If Statements
Usage of if statements is pretty straight forward and easy to use.
if (condition) {
...
};
If you'd like to see a real example
main.kop
fn main(argc, argv)
{
if (4 > 9) {
print("It is true!");
};
To learn how to compile the file, check this out!
> ./GLaDOS -r executable
It is false!