aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2022-03-27 17:35:46 -0500
committerAnthony Wang2022-03-27 17:35:46 -0500
commitf038ce57449fcbcba31b229ed0f0090c07eff34f (patch)
tree5b02f5cd00da79d31aec383c1933485312f76390
parentd77179fe61a73c03878688e4649a1cb919b3e996 (diff)
Add file with main function
-rw-r--r--sd.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/sd.go b/sd.go
new file mode 100644
index 0000000..52a7925
--- /dev/null
+++ b/sd.go
@@ -0,0 +1,9 @@
+package main
+
+import (
+ "fmt"
+)
+
+func main() {
+ fmt.Println("hello world")
+}