diff --git a/.gitignore b/.gitignore index f1c181e..6b6c58c 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,6 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out +.idea/ + + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..d40f394 --- /dev/null +++ b/go.mod @@ -0,0 +1 @@ +module github.com/kratisto/hamster-tycoon diff --git a/hamster-tycoon b/hamster-tycoon new file mode 100755 index 0000000..8c45323 Binary files /dev/null and b/hamster-tycoon differ diff --git a/hamster-tycoon.iml b/hamster-tycoon.iml new file mode 100644 index 0000000..49df094 --- /dev/null +++ b/hamster-tycoon.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/main.go b/main.go new file mode 100644 index 0000000..4a4e602 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Print("hello") +}