This commit is contained in:
2019-08-01 00:34:57 +02:00
parent 1a578c3f97
commit 9ff255ad7a
5 changed files with 21 additions and 0 deletions

3
.gitignore vendored
View File

@@ -10,3 +10,6 @@
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
.idea/

1
go.mod Normal file
View File

@@ -0,0 +1 @@
module github.com/kratisto/hamster-tycoon

BIN
hamster-tycoon Executable file

Binary file not shown.

10
hamster-tycoon.iml Normal file
View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="Go" enabled="true" />
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

7
main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Print("hello")
}