Go基礎系列:構建go程序

hello world 從一個簡單的程序開始解釋,將下面的內容放進test.go文件中,路徑隨意:linux package main import ( "fmt" ) func main() { fmt.Println("Hello World") } Go經過包的方式管理程序,每一個Go源代碼文件都必須聲明本身所在的包,正如上面的package main聲明本身所在的包是m
相關文章
相關標籤/搜索