Conditional structures: Difference between revisions

Content added Content deleted
(→‎{{header|68000 Assembly}}: clarification and better examples.)
(Added Woma Examples)
Line 7,593: Line 7,593:
result = 'not met'
result = 'not met'
}</lang>
}</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}}==
=={{header|Wrapl}}==