With this update:
- Newly added: Program.Not(condition) : This is a way to flip conditions. For example, Program.Not(True) will return false.
- Newly added: Program.Else {…} : This is for usage after Program.If
- Newly Added: Time builtin: The time builtin has 2 commands:
a. Time.Current(format) : format defines the way time is outputted, like “hh:mm:ss”
b. Time.Wait(secs) : Wait for the specified num. of secs. - Newly Added: Math.Random(min, max) : Random Numbers. For example, Math.Random(1, 100) for a number between 1 and 100.
- Newly Added: Terminal.Clear : Clears the screen.
- Change for engine: Instead of PyInstaller, we now use Nuitka, for better optimizations.
Again, contributions and feedback are welcome!