jcartledge / sublime-worksheet

An inline REPL for JavaScript, PHP, Ruby & more in Sublime Text 2 and 3
MIT License
333 stars 18 forks source link

Evaluating loop, first line is ignored #27

Closed rrader closed 11 years ago

rrader commented 11 years ago
for x in range(3):
    print (x)

# > 1
# > 2

Expected:

for x in range(3):
    print (x)

# > 0
# > 1
# > 2