Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50650 views
1
# This file will be compiled to .coffee/example.js
2
for i in [1..3]
3
do (i) ->
4
setTimeout ->
5
console.log "hello, #{ i }"
6
, 200*i
7
8