Jump to content

Conditional structures: Difference between revisions

Added zkl
m (→‎{{header|Free Pascal / Lazarus}}: Removed unnecessary section)
(Added zkl)
Line 4,255:
<xsl:if test="boolean($expr)">...</xsl:if>
<xsl:if test="$expr">...</xsl:if></lang>
 
<lang zkl>if (x) y else z;
if(a)b else if (c) else d; etc
x:=(if (a) b else c);
 
a and b or c // usually the same as if(a) b else c, beware if b evals to False
 
switch(x){
case(1){...}
case("2"){...} // matches anything
case(a)[fallthrough]{...} // no break, no break has to be explicit
case(b){...}
else {...} // case a C's default, has to be at the end
}</lang>
 
{{omit from|GUISS}}
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.