Prolix 2.0.1 Patch Notes

Release date: 2021-01-06

Updates

  • Fixed system error.
  • Fixed negative number values.
  • Fixed $math:gt, $math:ge, $math:lt, $math:le.
  • Replaced $string:length and $table:length with $utils:length.
  • Added new error: program interrupted
    • This error is only reported when the running program is stopped suddenly, such as using the Ctrl-C command.
  • Added new function $utils:tick.
    • Used to get how long the program has been running in seconds.
  • Added new function $utils:exit.
    • Used to exit the program instantly.
  • Added new function $string:unicode.
    • Used to convert ASCII code into a character.
  • Added new function $string:ordinal.
    • Used to convert a character into ASCII code.
  • Added infinity loop:
    • If the number of loops is below 0, it will run forever because the loop is operated by running and adding the number of runs until it equals the number of loops.
loop -1 {
    $io:write 'I will be on the run forever!\n";
}

Did you find the error?

  • Join our community by clicking here.