A compiler for the Mirage programming language, written in C++. Will boot strap eventually :P
See HERE for updates!
- CMake (3.10+)
- C++17 compiler** (g++ or clang++)
- Clang
sudo apt install cmake g++ clangcmake -B build -S .
cmake --build build./build/MirageC <input.mir>// hello.mir
func main(args []string) -> int {
println("hello world");
return 0;
}
./build/MirageC hello.mir && ./program