mirror of
https://github.com/vbatts/talks.git
synced 2024-12-27 09:06:30 +00:00
14 lines
152 B
Go
14 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)
|
||
|
}
|
||
|
}
|