commit ed6d47634b0a62ea55a4e1a2156ecf457b2583a3 Author: NunoSempere <nuno.semperelh@protonmail.com> Date: Sat, 13 Apr 2024 10:22:28 -0400 add hello world Diffstat:
| A | go.mod | | | 3 | +++ |
| A | main.go | | | 9 | +++++++++ |
2 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/go.mod b/go.mod @@ -0,0 +1,3 @@ +module git.nunosempere.com/NunoSempere/US-2024 + +go 1.22.1 diff --git a/main.go b/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello world") +}