about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-04-05 14:24:58 +0200
committerEmile <hanemile@protonmail.com>2019-04-05 14:24:58 +0200
commit3f7b898e54b0ce6cd07585987def2fa460a3f614 (patch)
treeb9abe05c18a2222684aa02b0c74a166c91c8f55d
parent82968cae80df72e65fbd378b1819beb8ed3bf5ab (diff)
simple hello world
-rw-r--r--main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..91e7378
--- /dev/null
+++ b/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("Hello World")
+}