Hello, world
GO のインストール
sudo apt install golang-go
Hello, world
package main
import "fmt"
func main(){
fmt.Println("Hello, world")
}
実行
go run test.go
sudo apt install golang-go
package main
import "fmt"
func main(){
fmt.Println("Hello, world")
}
go run test.go