commit 912f51c0e01d54b0768b079df19caddc64cae4f1 Author: NunoSempere Date: Sun Feb 25 10:35:47 2024 -0300 initialize hello world 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") + +}