Files
moxa/_test/a31.go
2019-07-30 11:00:06 -07:00

12 lines
125 B
Go

package main
func main() {
for range []int{0, 1, 2} {
print("hello ")
}
println("")
}
// Output:
// hello hello hello