Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 361 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 361 Bytes

jalfi

Compiler (stupid and minimal) written using the Sif tokenizer/lexer.

Dependencies

Jalfi compiles down to LLVM IR then uses GCC for linking.

HelloWorld.jf

int main() {
  print("Hello World");
  return 0;
}
Compiling & Running
$ ./jalfi HelloWorld.jf
$ ./HelloWorld
Hello World