agjaeger / CodeBin

CodeBin - an online IDE and compiler with a file server attached
Apache License 2.0
0 stars 1 forks source link

Skulpt Optimization #3

Open agjaeger opened 10 years ago

agjaeger commented 10 years ago

When I run:

for i in xrange(0,100000,1):
    print i

It crashes and burns. Skulpt might not be powerful enough.

cptaffe commented 10 years ago

Skulpt

I feel like looping to 100,000 is probably not an everyday problem. This isn't a Skulpt issue but a JavaScript browser implementation issue, which is more indirect.

Virtual Execution

In the future the execution environment will be ported to a go based virtual environment where applications will have, hopefully, more resources.

Note: I'm leaving this open for reference.