diff --git a/go.mod b/go.mod new file mode 100755 index 0000000..5fe9939 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/bloeys/cogo + +go 1.18 diff --git a/main.go b/main.go new file mode 100755 index 0000000..5cc377e --- /dev/null +++ b/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + println("Hello there, friend.") +}