Go Hello World

This commit is contained in:
Joe Wroten 2019-06-21 08:50:00 -05:00
parent acdd9b05ac
commit b3e5840f60

7
go/hello-world.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello World!")
}