initialize hello world

This commit is contained in:
NunoSempere 2024-02-25 10:35:47 -03:00
commit 912f51c0e0
3 changed files with 21 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.nunosempere.com/NunoSempere/probppl
go 1.22.0

2
makefile Normal file
View File

@ -0,0 +1,2 @@
dev:
go run probppl.go

16
probppl.go Normal file
View File

@ -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")
}