mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
removed class checks in favor of statement?
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user