Compare commits

...

2 Commits

Author SHA1 Message Date
e624023a23 Some more go 2026-01-20 00:11:37 +01:00
1b25d6dd3d Remove lua 2026-01-20 00:09:13 +01:00
7 changed files with 18 additions and 30 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

@@ -1,12 +1,15 @@
neville: neville:
julia -i "./neville-algo-ml.jl" julia -i ./src/neville-algo-ml.jl
doc: doc:
typst compile ./docs.typ typst compile ./src/ocs.typ
test_langs: test_langs:
# Test all languages and tools in this project # Test all languages and tools in this project
cargo run cargo run
uv run python ./main.py uv run python ./main.py
julia ./main.jl julia ./src/main.jl
nix flake info nix flake info
bun run ./index.ts
go mod graph
go run ./src/main.go

View File

@@ -1,25 +0,0 @@
package = "minis"
version = "dev-1"
source = {
url = "git+ssh://git@git.ascyii.de/jonas/minis"
}
description = {
detailed = [[
This is the home for all kinds of projects in various languages that
profit from beeing versionized with `git`.]],
homepage = "*** please enter a project homepage ***",
license = "*** please specify a license ***"
}
dependencies = {
queries = {}
}
build_dependencies = {
queries = {}
}
build = {
type = "builtin",
modules = {}
}
test_dependencies = {
queries = {}
}

View File

7
src/main.go Normal file
View File

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

View File