6 lines
181 B
CoffeeScript
6 lines
181 B
CoffeeScript
|
|
# Generate an array of functions.
|
||
|
|
funcs = ( for i in [ 0...10 ] then do ( i ) -> -> i * i )
|
||
|
|
|
||
|
|
# Call each function to demonstrate value capture.
|
||
|
|
console.log func() for func in funcs
|