Compare commits

...

2 Commits

Author SHA1 Message Date
brian c1e44ce35b obligatory hello world thing 2026-05-06 21:09:53 -06:00
brian 69c91a3366 go init 2026-05-06 21:05:28 -06:00
2 changed files with 10 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
module drogobox.com/drogobox
go 1.25.9
+7
View File
@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Greetings Program")
}