You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Programming language based on python with nice async capabilities
var foo = () ->
var i = 0
while i != 10000 do
i = i + 1
return i
var r = async foo()
var s = async foo()
if r+s != 2*10000 do
throw 'it should be 20000'