diff options
-rw-r--r-- | main.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/main.go b/main.go new file mode 100644 index 0000000..cfa2853 --- /dev/null +++ b/main.go @@ -0,0 +1,12 @@ +// package hello says hello. +package hello + +import ( + "fmt" +) + +// Hello says hello. +func Hello() { + fmt.Println("Hello") +} + |