RosettaCodeData/Task/Conditional-structures/CoffeeScript/conditional-structures-2.coffee

10 lines
121 B
CoffeeScript
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
n = 1
switch n
when 1
console.log "one"
when 2, 3
console.log "two or three"
else
console.log "other"