Expressive control structures for decision making and iteration.
1foresee x > 10:2 declare("Warning")3alternate x > 5:4 declare("Notice")5otherwise:6 declare("Info")1cycle while condition:2 # do something1items := [1, 2, 3]2cycle through items as item:3 declare(item)1cycle from 1 to 5 as i:2 declare(i) # 1, 2, 3, 41# Deferred execution block2scheme:3 # code here4execute56# Assertion7absolute value > 0