# a map, with symbols
{ @name : 'Harry Potter',
@nemesis : 'Voldemort' }
# a set, similarly =>false
{ @sprinkles, @syrup, @cherry }.contains(@fudge)
# transform list => [ 'STEVE', 'WOZ', 'RANDY' ]
i.toUpperCase() for i in ['steve', 'woz', 'randy']
# filter list => [ 'ipod', 'ipad', 'iphone' ]
('i' + p) for p in ['mac',
'pod',
'pad',
'phone'] if p.startsWith('p')
# local variables, private to function
minutes(num) ->"@{num * year} minutes in @{num} years"where
hour: 60
day : 24 * hour
week: 7 * day
year: 52 * week
# exceptions handled with pattern matching
cleanup(file) except handler ->
file.open().truncate()
handler(e) =>FileNotFoundException : "no harm, no file"IOException : "failed: @{e.message}"
# sorts a list => [3, 14, 15, 268]
quicksort(ls) =>
[] : []
[x:xs] : (quicksort(i for i in xs if i > x) + [x] +
quicksort(i for i in xs if i < x))
quicksort([15, 268, 3, 14])
# creates instance of Star with default ageclassStar->
name
mass
age : '4 billion years'
new Star(name: 'Proxima Centauri'
mass: 0.123)
# instance method => 'mostly''They mostly come at night, mostly'.substring(28)
# static method =>133434532556`java.lang.System`.currentTimeMillis()
# constructor=>Sun15Apr201214:22:50UTC
new java.util.Date()
# property =>1 (getTime)
new java.util.Date(1).time
here I am "adding" a method to a simple java string
loop produces clear, useful stack traces when things go wrong
java.lang.RuntimeException: i'm complaining
at prelude.raise(prelude.loop:9)
at myapp.func3(my_app.loop:3)
at myapp.func2(my_app.loop:6)
at myapp.func1(my_app.loop:9)
at myapp.main(my_app.loop:13)