Go is a cool programming language. Check out golang.org
install:sudo yum install golang
[vagrant@localhost go]$ go version go version go1.7.3 linux/amd64
package main import "fmt" func main(){ fmt.Println("hello world") }
Go言語では、go buildでコンパイルしますが、go run xxx.goの1行で、実行することも可能です。
[vagrant@localhost go]$ go build hello.go [vagrant@localhost go]$ ls hello hello.go [vagrant@localhost go]$ ./hello hello world [vagrant@localhost go]$ go run hello.go hello world