diff --git a/hello.go b/hello.go new file mode 100644 index 0000000..17957ee --- /dev/null +++ b/hello.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Printf("hello, world\n") +}