We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d8174d commit f4ee932Copy full SHA for f4ee932
main.go
@@ -0,0 +1,7 @@
1
+package main // 声明 main 包,表明当前是一个可执行程序
2
+
3
+import "fmt" // 导入内置 fmt
4
5
+func main(){ // main函数,是程序执行的入口
6
+ fmt.Println("Hello World!") // 在终端打印 Hello World!
7
+}
0 commit comments