go语言的第一个helloworld

package main  // 代码包声明语句。
import "fmt" //系统包用来输出的

func main() {
    // 打印函数调用语句。用于打印输出信息。
   fmt.Println("helloworld")
}

输出

helloworld

猜你喜欢

转载自www.cnblogs.com/sea-stream/p/11222729.html