Skip to content
CodeBook
Main Navigation
ToolBox
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
GO笔记
#
基本语法
#
第一个程序 Hello world
go
package
main
import
"
fmt
"
func
main
()
{
fmt
.
Println
(
"
Hello world!
"
)
}