added if_statements

This commit is contained in:
Nathan Braswell
2016-01-19 02:06:30 -05:00
parent 458299abe1
commit 4493dfd861
4 changed files with 37 additions and 5 deletions

View File

@@ -24,6 +24,8 @@ fun main(): int {
simple_print(yet_another_declaration)
simple_print("Hello World!\n")
simple_print(1337)
if (1 + 2 && false) simple_print("its true!")
else simple_print("its false!")
return 0
}