Difference between revisions of "Demo:SwitchStatement7"

From PKC
Jump to navigation Jump to search
Line 8: Line 8:
}}
}}
</nowiki>
</nowiki>
<noinclude>
The above text can be better visualized as follow:
<syntaxhighlight lang=HTML>
{{#switch: {{#expr: 4+2*1}}
| 1 = one
| 2 = two
| 3|4|5 = any of 3–5
| 6 = six
| 7 = {{uc:sEveN}} <!--lowercase-->
| #default = other
}}
</syntaxhighlight>
</noinclude>

Revision as of 08:44, 19 May 2022

{{#switch: {{#expr: 4+2*1}} | 1 = one | 2 = two | 3|4|5 = any of 3–5 | 6 = six | 7 = {{uc:sEveN}} <!--lowercase--> | #default = other }}


The above text can be better visualized as follow:

{{#switch: {{#expr: 4+2*1}}
 | 1 = one
 | 2 = two
 | 3|4|5 = any of 3–5
 | 6 = six
 | 7 = {{uc:sEveN}} <!--lowercase-->
 | #default = other
}}