1# This file will be compiled to .coffee/example.js 2for i in [1..3] 3 do (i) -> 4 setTimeout -> 5 console.log "hello, #{ i }" 6 , 200*i 7 8