Some more go

This commit is contained in:
2026-01-20 00:11:37 +01:00
parent 1b25d6dd3d
commit e624023a23
3 changed files with 14 additions and 2 deletions

7
.gitignore vendored
View File

@@ -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

View File

@@ -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

7
src/main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello from go!")
}