12 lines
125 B
Go
12 lines
125 B
Go
package main
|
|
|
|
func main() {
|
|
for range []int{0, 1, 2} {
|
|
print("hello ")
|
|
}
|
|
println("")
|
|
}
|
|
|
|
// Output:
|
|
// hello hello hello
|