Fixed exponent expression not being in right-first order of operations

This commit is contained in:
2025-11-17 21:20:32 -07:00
parent f0a3bbe739
commit 5a78e25469
7 changed files with 297 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
#[cfg(test)]
mod test;
mod v2;
mod variable_manager;
use parser::Parser as ASTParser;
use parser::sys_call::SysCall;