Skip to content

Make semicolons necessary

Breaking change

This is a breaking change.

This design update makes semicolons necessary for all files. This does not includes the REPL version. Linked pull request(s): #85.

Proposed changes

Make semicolons necessary. This means that

Before
print("Hello World!")

becomes

After
print("Hello World!");

This does not include the REPL version tho, so

REPL
>>> print("Hello World!")
Hello World!

stays that way.

This can be done simply inside of the pest grammar.


Last update: 2024-02-14