Compare commits

..

No commits in common. "2fab792c1a432101f41fc4a50a1ef1c0f7a6be0f" and "950eef0e69f122eb772d22f311e4bc85c9a310d0" have entirely different histories.

View File

@ -34,15 +34,4 @@ describe('while', () => {
b`) b`)
.toEvaluateTo(100) .toEvaluateTo(100)
}) })
test('returns value', () => {
expect(`
a = 0
ret = while a < 10:
a += 1
done
end
ret`)
.toEvaluateTo('done')
})
}) })