diff --git a/helloworld.go b/helloworld.go new file mode 100644 index 0000000..f9a7e1a --- /dev/null +++ b/helloworld.go @@ -0,0 +1,9 @@ +package main + +import "fmt" + +// Main function +func main() { + + fmt.Println("Hello World") +} \ No newline at end of file