just in case

This commit is contained in:
Chris Wanstrath 2025-11-03 20:11:59 -08:00
parent 5f4bf60062
commit f1eaafee19

View File

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