Calamity210 / BirbLang

Minimal Bird programming language curated to help new contributers delve into OSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Semi-colons aren't enforced

Calamity210 opened this issue · comments

commented

Describe the bug
Running a program without semi colons would generally run the first line correctly, but ignore all other lines rather than throwing an error

To Reproduce

screm(0)
screm(1);

Notice how only 0 is scremed

Expected behavior
Expect an error to be thrown stating that a semi-colon is expected

commented

Corrected in 068b1e9