Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 663 Bytes

File metadata and controls

38 lines (21 loc) · 663 Bytes

Make semicolons necessary

!!! danger "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

print("Hello World!")

becomes

print("Hello World!");

This does not include the REPL version tho, so

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

stays that way.

This can be done simply inside of the pest grammar.