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

12 lines
182 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
<cfswitch expression="#x#">
<cfcase value="1">
do something
</cfcase>
<cfcase value="2">
do something
</cfcase>
<cfdefaultcase>
do something
</cfdefaultcase>
</cfswitch>