commit c041b2efc410e7bf4a54c95c6bc3107c44d72d95 Author: Eric Meyer Date: Wed Oct 18 15:14:17 2017 -0500 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..485dee64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea diff --git a/main.go b/main.go new file mode 100644 index 00000000..d2c4e91e --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello world") +}