loop.go 91 B

123456789
  1. package main
  2. import "fmt"
  3. func main() {
  4. for x := 1; x <= 3; x++ {
  5. fmt.Println(x)
  6. }
  7. }