mohayonao / CoffeeCollider

Sound Processing Language for Web Audio
http://mohayonao.github.io/CoffeeCollider/
MIT License
220 stars 15 forks source link

a syncblock function does not do repeatedly #50

Closed mohayonao closed 10 years ago

mohayonao commented 10 years ago

a syncblock function does not do repeatedly.

Task ->
  [ 1, 2, 3 ].forEach syncblock (i)->
    console.log i
.start()

# expected console out : 1, 2, 3
# actual: 1