RosettaCodeData/Task/Conditional-structures/ColdFusion/conditional-structures-2.cfm

12 lines
182 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<cfswitch expression="#x#">
<cfcase value="1">
do something
</cfcase>
<cfcase value="2">
do something
</cfcase>
<cfdefaultcase>
do something
</cfdefaultcase>
</cfswitch>