From 912f51c0e01d54b0768b079df19caddc64cae4f1 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Sun, 25 Feb 2024 10:35:47 -0300 Subject: [PATCH] initialize hello world --- go.mod | 3 +++ makefile | 2 ++ probppl.go | 16 ++++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 go.mod create mode 100644 makefile create mode 100644 probppl.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..72e004c --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.nunosempere.com/NunoSempere/probppl + +go 1.22.0 diff --git a/makefile b/makefile new file mode 100644 index 0000000..d403f66 --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +dev: + go run probppl.go diff --git a/probppl.go b/probppl.go new file mode 100644 index 0000000..74dee2f --- /dev/null +++ b/probppl.go @@ -0,0 +1,16 @@ +package main + +import "fmt" + +/* +import "math" +import "sync" +import rand "math/rand/v2" + +type src = *rand.Rand +*/ + +func main() { + fmt.Println("Hello world") + +}