From e624023a23bd3c444bdaf9f035dd80e3c28ad171 Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Tue, 20 Jan 2026 00:11:37 +0100 Subject: [PATCH] Some more go --- .gitignore | 7 +++++-- justfile | 2 ++ src/main.go | 7 +++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 src/main.go 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!") +}