]> rethought.computer Git - sorel-lang.git/commit
working interpreter for hylo keep/288fa6be44bc383d1ff3d59a46587e96d1c63fc0
authorBryan English <bryan@rethought.computer>
Sat, 13 Dec 2025 05:08:39 +0000 (00:08 -0500)
committerBryan English <bryan@rethought.computer>
Tue, 10 Feb 2026 04:08:54 +0000 (04:08 +0000)
commit288fa6be44bc383d1ff3d59a46587e96d1c63fc0
tree9fbdcc68983ed42a5ff2044bf6dc13b4471f0bec
working interpreter for hylo
16 files changed:
hylo-lang/.gitignore [new file with mode: 0644]
hylo-lang/Cargo.lock [new file with mode: 0644]
hylo-lang/Cargo.toml [new file with mode: 0644]
hylo-lang/README.md [new file with mode: 0644]
hylo-lang/examples/fib.hylo [new file with mode: 0644]
hylo-lang/flake.lock [new file with mode: 0644]
hylo-lang/flake.nix [new file with mode: 0644]
hylo-lang/hylo-interpret/Cargo.toml [new file with mode: 0644]
hylo-lang/hylo-interpret/src/lib.rs [new file with mode: 0644]
hylo-lang/hylo-ir/Cargo.toml [new file with mode: 0644]
hylo-lang/hylo-ir/src/lib.rs [new file with mode: 0644]
hylo-lang/hyloc/Cargo.toml [new file with mode: 0644]
hylo-lang/hyloc/src/ir.rs [new file with mode: 0644]
hylo-lang/hyloc/src/main.rs [new file with mode: 0644]
hylo-lang/hyloc/src/parser.rs [new file with mode: 0644]
hylo-lang/hyloc/src/tokenizer.rs [new file with mode: 0644]