failing single line if test

This commit is contained in:
Chris Wanstrath 2025-10-25 19:51:57 -07:00
parent 611c2a4c8a
commit e4100c7d89

View File

@ -139,6 +139,10 @@ describe('compiler', () => {
scattered
end`).toEvaluateTo('dwarf')
})
test('single line if', () => {
expect(`if 3 < 9: shire`).toEvaluateTo('shire')
})
})
describe('errors', () => {