Diff of /hello.go [000000] .. [efc635]  Maximize  Restore

Switch to side-by-side view

--- a
+++ b/hello.go
@@ -0,0 +1,10 @@
+// Our first program will print the classic "hello world"
+// message. Here's the full source code.
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("hello world")
+}
+