You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
452 B
19 lines
452 B
html
|
|
body
|
|
- var friends = 1
|
|
case friends
|
|
when 0: p you have no friends
|
|
when 1: p you have a friend
|
|
default: p you have #{friends} friends
|
|
- var friends = 0
|
|
case friends
|
|
when 0
|
|
when 1
|
|
p you have very few friends
|
|
default
|
|
p you have #{friends} friends
|
|
|
|
- var friend = 'Tim:G'
|
|
case friend
|
|
when 'Tim:G': p Friend is a string
|
|
when {tim: 'g'}: p Friend is an object
|
|
|