commit 53125ffbe556e4b8789beabd254ce2610df7ef9f Author: La Programmatrice Verde Date: Sat May 3 20:53:34 2025 +0200 Initial commit diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..39f811e --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module squadre_calcio_go + +go 1.24.2 diff --git a/main.go b/main.go new file mode 100644 index 0000000..4e49454 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main(){ + fmt.Println("Verde-chan is cute~") +}