Slide 78
Slide 78 text
IcedCoffeeScript is a superset of CoffeeScript... it will
interpret almost all existing CoffeeScript programs.
IcedCoffeeScript (ICS) adds two new
keywords: await and defer.
parallelSearch = (keywords, cb) ->
out = []
await
for k,i in keywords
search k, defer out[i]
cb out