Jay is a simple programming language project for school that is meant to teach me more about compiler development. Language inspired by C, LLVM IR, and Swift.
i32 main(i32 argc, i8** argv) {
i32 x = 4
i32 y = 12
printf("%i", x + y)
return 0
}
Prints: 16