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 *.svg
*.png *.png
*.jpg *.jpg
*.rnote
# Documents # Documents
*.pdf *.pdf
# Builds # Builds
.venv
build
target target
node_modules node_modules
build
.venv # Deprecated lua for now
.luarocks .luarocks
luarocks luarocks
lua lua

View File

@@ -11,3 +11,5 @@ test_langs:
julia ./src/main.jl julia ./src/main.jl
nix flake info nix flake info
bun run ./index.ts 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!")
}