From 7961ed1089d912eb0f10502ad60b175d0ae6e792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Gallego=20Rodr=C3=ADguez?= Date: Wed, 4 Sep 2019 10:15:56 +0200 Subject: [PATCH] first main file --- main.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..4f45c86 --- /dev/null +++ b/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Kapow!") +}