removed class checks in favor of statement?

This commit is contained in:
Jeremy Ashkenas
2009-12-17 21:10:49 -05:00
parent d89ca33cdb
commit e1e6bb72c6
2 changed files with 28 additions and 4 deletions

View File

@@ -85,13 +85,17 @@ finally
try all_hell_breaks_loose() catch error print(error) finally clean_up().
# While loops.
# While loops, break and continue.
while demand > supply
sell()
restock().
while supply > demand then buy().
while true
break if broken
continue if continuing.
# Unary operators.
!!true