Start simple

This commit is contained in:
Micheal Wilkinson
2026-03-17 20:11:21 +00:00
commit 894c2fba08
3 changed files with 46 additions and 0 deletions

9
main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, World!")
}