Compiler (stupid and minimal) written using the Sif tokenizer/lexer.
Jalfi compiles down to LLVM IR then uses GCC for linking.
HelloWorld.jf
int main() {
print("Hello World");
return 0;
}
$ ./jalfi HelloWorld.jf
$ ./HelloWorld
Hello World
Compiler (stupid and minimal) written using the Sif tokenizer/lexer.
Jalfi compiles down to LLVM IR then uses GCC for linking.
HelloWorld.jf
int main() {
print("Hello World");
return 0;
}
$ ./jalfi HelloWorld.jf
$ ./HelloWorld
Hello World