let foo = 1;
let bar = true;
let baz = "qux";
if (bar == true) then
print(baz);
else
print("quux");
end;