From f0f27aa3cfe2f70f645db122d76a053783c0206c Mon Sep 17 00:00:00 2001 From: Xx_DrkLeo_xX Date: Wed, 27 Mar 2024 18:13:05 +0100 Subject: [PATCH] Hello, World! --- go.mod | 3 +++ main.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 go.mod create mode 100644 main.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..13a69a8 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module court + +go 1.22.0 diff --git a/main.go b/main.go new file mode 100644 index 0000000..b3a9096 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Printf("Hello, World!") +}