diff --git a/.gitignore b/.gitignore index d884891..3c9e764 100644 --- a/.gitignore +++ b/.gitignore @@ -2,15 +2,18 @@ *.svg *.png *.jpg +*.rnote # Documents *.pdf # Builds +.venv +build target node_modules -build -.venv + +# Deprecated lua for now .luarocks luarocks lua diff --git a/justfile b/justfile index 317e760..2cd0db7 100644 --- a/justfile +++ b/justfile @@ -11,3 +11,5 @@ test_langs: julia ./src/main.jl nix flake info bun run ./index.ts + go mod graph + go run ./src/main.go diff --git a/src/main.go b/src/main.go new file mode 100644 index 0000000..5b4fa1a --- /dev/null +++ b/src/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello from go!") +}