This repository was archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
The Language
SjVer edited this page Mar 26, 2022
·
9 revisions
Evi is free-from, meaning that spaces and comments are ignored, except in strings, in characters and as delimiters between tokens. Spaces are recognized as whitespaces, carriage returns and tabs. Only ASCII characters are accepted.
Identifiers consist of a series of alphanumeric characters or underscores, not starting with a digit. Evi has no alphanumerical keywords, so no identifiers are reserved by the compiler. Next to that, Evi is case-sensitive. meaning that mystring
and myString
are two different identifiers.
The following characters are reserved for keysymbols, operators and other tokens:
( ) { } [ ]
+ - * / ! ,
@ % = ~ ; $
Next: 5 – The Standard Library
Home | About | Installation | Language Overview | License: MIT 2022 Sjoerd Vermeulen. Terms