This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
hello-world/go.go

9 lines
121 B
Go

package main
import "fmt"
func main() {
for i := 0; i < 6; i++ {
fmt.Printf("Hello world, %d\n", i)
}
}