Commit 57d4f8a

mo khan <mo.khan@gmail.com>
2019-10-19 21:58:33
Hello, world
* https://github.com/quii/learn-go-with-tests/blob/master/hello-world.md
Changed files (1)
hello.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+  fmt.Println("Hello, world")
+}