Conditional structures: Difference between revisions

Added Woma Examples
(→‎{{header|68000 Assembly}}: clarification and better examples.)
(Added Woma Examples)
Line 7,593:
result = 'not met'
}</lang>
 
=={{header|Womal}}==
Woma has simple if statements.
 
===break-if===
Valid inside of a <@> (loop) block.
<lang woma><%>condition</lang>
 
===continue-if===
Valid inside of a <@> (loop) block.
<lang woma><$>condition</lang>
 
===if statement===
Valid inside of a function or a <@> (loop) block.
<lang woma>condition = True
condition<?>print(condition)</lang>
 
=={{header|Wrapl}}==
Anonymous user