add hello world

This commit is contained in:
NunoSempere 2024-04-13 10:22:28 -04:00
commit ed6d47634b
2 changed files with 12 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.nunosempere.com/NunoSempere/US-2024
go 1.22.1

9
main.go Normal file
View File

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