1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2025-01-05 21:37:07 +00:00
talks/2013/03-golang-learning-lunch/1-hello/main.go

9 lines
75 B
Go
Raw Normal View History

2016-12-05 15:44:45 +00:00
package main
import "fmt"
func main() {
fmt.Println("Hello World!")
}