defer statements

This commit is contained in:
gingerBill
2016-08-16 18:53:02 +01:00
parent 5da6b74567
commit 2d49a61563
13 changed files with 338 additions and 454 deletions
+2 -5
View File
@@ -121,10 +121,7 @@ print_uint_base :: proc(i, base : uint) {
print_bool :: proc(b : bool) {
if b {
print_string("true");
} else {
print_string("false");
}
if b { print_string("true"); }
else { print_string("false"); }
}