RosettaCodeData/Task/Conditional-structures/CoffeeScript/conditional-structures-1.coffee
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

6 lines
92 B
CoffeeScript

if n == 1
console.log "one"
else if n == 2
console.log "two"
else
console.log "other"