humble beginnings

This commit is contained in:
wisplite
2025-08-27 00:44:04 -05:00
commit 80bf7e9cf2
2 changed files with 10 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
module github.com/wisplite/raster
go 1.24.6
+7
View File
@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}