Please enable JavaScript.
Coggle requires JavaScript to display documents.
Control Flow (Control Flow Statement (break (switch, loop), continue (loop…
Control Flow
Control Flow Statement
break
switch
loop
fallthrough
switch
continue
loop
continue
return
throw
Loops
for-in
iterate over collection types
iterate with numeric ranges
normal numeric ranges
closed-range ...
half-open range (<..)
stride
half-open range (from:, to:, by:)
closed-range (from:, through:, by:)
while
while
repeat-while
Conditionals
if
switch
cases
Interval Matching
Tuples
(value,_)
(range,range)
(value,value)
Compound Values
Value Binding
(let x, 0)
let (x,y)
Single Value
Where