]> rethought.computer Git - sorel-lang.git/commit
rename hylo to rel keep/3bdde1ae969e69c2ec2a3d4acd747afe22d01822
authorBryan English <bryan@rethought.computer>
Thu, 29 Jan 2026 13:27:19 +0000 (08:27 -0500)
committerBryan English <bryan@rethought.computer>
Tue, 10 Feb 2026 04:08:54 +0000 (04:08 +0000)
commit3bdde1ae969e69c2ec2a3d4acd747afe22d01822
tree407b60d81a8e56a1be404d3935b27255064748cd
parentc446d7ba45332fcf36e9a8e8377af9e092b99429
rename hylo to rel
51 files changed:
hylo-lang/.gitignore [deleted file]
hylo-lang/Cargo.lock [deleted file]
hylo-lang/Cargo.toml [deleted file]
hylo-lang/README.md [deleted file]
hylo-lang/examples/alloc.hylo [deleted file]
hylo-lang/examples/fib.hylo [deleted file]
hylo-lang/examples/put2.hylo [deleted file]
hylo-lang/examples/syscalls.hylo [deleted file]
hylo-lang/fib-example/compile.sh [deleted file]
hylo-lang/fib-example/fib.hylo [deleted file]
hylo-lang/fib-example/putn.c [deleted file]
hylo-lang/flake.lock [deleted file]
hylo-lang/flake.nix [deleted file]
hylo-lang/hylo-interpret/Cargo.toml [deleted file]
hylo-lang/hylo-interpret/src/lib.rs [deleted file]
hylo-lang/hylo-ir/Cargo.toml [deleted file]
hylo-lang/hylo-ir/src/lib.rs [deleted file]
hylo-lang/hyloc/Cargo.toml [deleted file]
hylo-lang/hyloc/src/ir.rs [deleted file]
hylo-lang/hyloc/src/main.rs [deleted file]
hylo-lang/hyloc/src/parser.rs [deleted file]
hylo-lang/hyloc/src/riscv_asm_codegen.rs [deleted file]
hylo-lang/hyloc/src/tokenizer.rs [deleted file]
hylo-lang/qemu/run.sh [deleted file]
hylo-lang/qemu/setup.sh [deleted file]
rel-lang/.gitignore [new file with mode: 0644]
rel-lang/Cargo.lock [new file with mode: 0644]
rel-lang/Cargo.toml [new file with mode: 0644]
rel-lang/README.md [new file with mode: 0644]
rel-lang/a.out [new file with mode: 0644]
rel-lang/examples/alloc.rel [new file with mode: 0644]
rel-lang/examples/fib.rel [new file with mode: 0644]
rel-lang/examples/put2.rel [new file with mode: 0644]
rel-lang/examples/syscalls.rel [new file with mode: 0644]
rel-lang/fib-example/compile.sh [new file with mode: 0644]
rel-lang/fib-example/fib.rel [new file with mode: 0644]
rel-lang/fib-example/putn.c [new file with mode: 0644]
rel-lang/flake.lock [new file with mode: 0644]
rel-lang/flake.nix [new file with mode: 0644]
rel-lang/qemu/run.sh [new file with mode: 0644]
rel-lang/qemu/setup.sh [new file with mode: 0644]
rel-lang/rel-interpret/Cargo.toml [new file with mode: 0644]
rel-lang/rel-interpret/src/lib.rs [new file with mode: 0644]
rel-lang/rel-ir/Cargo.toml [new file with mode: 0644]
rel-lang/rel-ir/src/lib.rs [new file with mode: 0644]
rel-lang/relc/Cargo.toml [new file with mode: 0644]
rel-lang/relc/src/ir.rs [new file with mode: 0644]
rel-lang/relc/src/main.rs [new file with mode: 0644]
rel-lang/relc/src/parser.rs [new file with mode: 0644]
rel-lang/relc/src/riscv_asm_codegen.rs [new file with mode: 0644]
rel-lang/relc/src/tokenizer.rs [new file with mode: 0644]