1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2024-11-15 21:28:36 +00:00
talks/2013/03-golang-learning-lunch/2-hello/main.go

13 lines
152 B
Go

package main
import "fmt"
func main() {
var words string
words = "Hello World!"
for i := 0; i < 10; i++ {
fmt.Printf("%s\n", words)
}
}