mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
63 lines
683 B
CoffeeScript
63 lines
683 B
CoffeeScript
a: [((x) -> x), ((x) -> x * x)]
|
|
|
|
ok a.length is 2
|
|
|
|
|
|
regex: /match/i
|
|
words: "I think there is a match in here."
|
|
|
|
ok !!words.match(regex)
|
|
|
|
|
|
neg: (3 -4)
|
|
|
|
ok neg is -1
|
|
|
|
|
|
func: ->
|
|
return if true
|
|
|
|
ok func() is null
|
|
|
|
|
|
str: "\\"
|
|
reg: /\\/
|
|
|
|
ok reg(str) and str is '\\'
|
|
|
|
|
|
money$: 'dollars'
|
|
|
|
ok money$ is 'dollars'
|
|
|
|
|
|
multiline: "one
|
|
two
|
|
three"
|
|
|
|
ok multiline is 'one two three'
|
|
|
|
|
|
ok {a: (num) -> num is 10 }.a 10
|
|
|
|
|
|
bob: {
|
|
name: 'Bob'
|
|
greet: (salutation) ->
|
|
salutation + " " + @name
|
|
hello: ->
|
|
@['greet'] "Hello"
|
|
10: 'number'
|
|
}
|
|
|
|
ok bob.hello() is "Hello Bob"
|
|
ok bob[10] is 'number'
|
|
|
|
|
|
obj: {
|
|
'is': -> yes
|
|
'not': -> no
|
|
}
|
|
|
|
ok obj.is()
|
|
ok not obj.not()
|