Simple x86_64 compiler for the ZRES programming language.
- Make sure you have NASM and GNU (maybe MUSL) installed if you are using Linux. For windows, make sure you have MinGW and NASM for windows
- Run the script with the input file as an argument.
zres <input_file>
Example:
global main {
out("Hello, world!");
exit(0);
}
Where global funcname
is the entry point.
- Currently windows is not supported, letting this be a Linux only programming language (for now)
- Why? I cant print to stdout, if anyone knows a fix, please let me know!
- Also why not OSX? I don't have access to a mac nor do i plan on buying one.
windowsbuild3r