https://www.runoob.com/go/go-tutorial.html
字符串必须双引号“”
[root@lnmp golang]# cat hello.go
package main
import "fmt"
func main(){
fmt.Println("hello");
test();
}
func test(){
fmt.Println("the world!");
}
[root@lnmp golang]#
作用域为已声明标识符所表示的常量、类型、变量、函数或包在源代码中的作用范围。
Go 语言中变量可以在三个地方声明:
函数内定义的变量称为局部变量
函数外定义的变量称为全局变量
函数定义中的变量称为形式参数