Conditional structures: Difference between revisions

m
→‎{{header|REXX}}: added a couple of SELECT-END comment labels. -- ~~~~
(adding maxima)
m (→‎{{header|REXX}}: added a couple of SELECT-END comment labels. -- ~~~~)
Line 2,793:
/*if control reaches this point and none of the WHENs */
/*were satisfiied, a SYNTAX condition is raised (error).*/
end /*select*/</lang>
===SELECT--WHEN/OTHERWISE===
<lang rexx> select
Line 2,808:
say
exit 13
end /*select*/</lang>
 
=={{header|Rhope}}==