10 lines
121 B
CoffeeScript
10 lines
121 B
CoffeeScript
|
|
n = 1
|
||
|
|
|
||
|
|
switch n
|
||
|
|
when 1
|
||
|
|
console.log "one"
|
||
|
|
when 2, 3
|
||
|
|
console.log "two or three"
|
||
|
|
else
|
||
|
|
console.log "other"
|