问题描述
解决方案
package main //这个是必须的,所有的go文件必须以 package开头
import "fmt" // ”fmt“是go必须要引入格式化I/O的库。如果要引入多个库import用( )号包裹所有的库。例如 import ( “fmt” “strconv”)
func main() { //这是主函数
fmt.Printf("hello world!")// fmt的Print()函数用于打印
}
http://fqh.iteye.com/blog/1707005 参考这个
解决方案二:
可能是你的环境配置的有问题,可参考以下链接
手把手教你Windows下Go语言的环境搭建
http://tech.it168.com/a2013/1125/1564/000001564307.shtml
go语言可以参考这个
http://www.yiibai.com/go/go_start.html
时间: 2025-01-08 08:22:15