A C-like programming language implemented in Rust (for now)
Check out the official Hello, World program!
Compiles to x86-64 instruction set and uses linux syscalls. Expects both nasm
and ld
to be in $PATH
.
import "core.rc"
i32 main() {
puts("Hello, World!\n");
return 0;
}
more examples in the example directory. Check out the sudoku solver example if you want to see a program that actually does something interesting
Copyright (c) 2022, Satvik Reddy