diff options
author | Anthony Wang | 2022-03-27 17:35:46 -0500 |
---|---|---|
committer | Anthony Wang | 2022-03-27 17:35:46 -0500 |
commit | f038ce57449fcbcba31b229ed0f0090c07eff34f (patch) | |
tree | 5b02f5cd00da79d31aec383c1933485312f76390 | |
parent | d77179fe61a73c03878688e4649a1cb919b3e996 (diff) |
Add file with main function
-rw-r--r-- | sd.go | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("hello world") +} |