Browse Source

Add Hello, world

Kare Nuorteva 7 years ago
parent
commit
dbeb2e9670
1 changed files with 7 additions and 0 deletions
  1. 7 0
      test.go

+ 7 - 0
test.go

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