This commit is contained in:
Benjamyn Love 2025-02-26 10:46:06 +11:00
commit 91ab2438a3
3 changed files with 10 additions and 0 deletions

0
README.md Normal file
View File

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.lovelynet.net/benjamyn/hellogo
go 1.24.0

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("hello world")
}