1. <cfset num = 3 />
  2. <cfswitch expression="#num#">
  3.     <cfcase value="0">
  4.     first
  5.     </cfcase>
  6.     <cfcase value="3">
  7.     second
  8.     </cfcase>
  9.     <cfcase value="5">
  10.     third
  11.     </cfcase>
  12. </cfswitch>