Hello, World!

This commit is contained in:
Xx_DrkLeo_xX 2024-03-27 18:13:05 +01:00
commit f0f27aa3cf
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module court
go 1.22.0

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Printf("Hello, World!")
}