https://learnku.com/docs/go-f...python
break default func interface select case defer go map struct chan else goto package switch const fallthrough if range type continue for import return var
// :單行註釋
/ /:多行註釋golang
//當前程序的包名 package main //導入其餘的包 import "fmt" //常量的定義 const PI = 3.14 //全局變量的聲明與賦值 var name = "gopher" //通常類型的聲明 type newType int //結構的聲明 type gopher struct{} //接口的聲明 type golang interface{} //由main 函數做爲程序入口點啓動 func main(){ Println("hello") }
import "fimt" import "os" simple import ( "fmt" "os" )
import ( io "fmt" ) 調用時候 io.Println("")
能夠省略調用,易混淆不知道在哪一個包less
import ( . "fmt" ) 調用時候 Println("")
package main //import "fmt" import . "fmt" func main() { Println("hello") }
Go語言中,使用 ==大小寫== 來決定該 常量、變量、類型、接口、結構或函數 是否能夠被外部包所調用:函數
根據約定:code