📥 Patch Notes:
VSCode
- Changed setup.py to try to add Nytescript to the code runner extension to allow the play/run button to work with running scripts
Shell
- Made shell cursor controllable using the readline module on Unix systems, making it like Windows
Statements
- Added Switch Statement using keywords
switch
,case
anddefault
(Grammar is ingrammar.txt
) - Added Try-Except Statement using keywords
try
andexcept
(Grammar is ingrammar.txt
) - Added Import Statements using keyword
import
(Grammar is ingrammar.txt
)
Functions
- Added
strcon()
function which takes in a list to string concatenate - Added
sys_eval()
function which is likeos.system()
Lexer
- Rewrote Tokeniser with
match ... case ...
format
🐞 Bug Fixes:
None