RosettaCodeData/Task/Conditional-structures/CoffeeScript/conditional-structures-2.coffeescript
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
121 B
Text

n = 1
switch n
when 1
console.log "one"
when 2, 3
console.log "two or three"
else
console.log "other"