compiler and vm: added modulo, rem and abs
ci/woodpecker/push/debian Pipeline failed
ci/woodpecker/push/fedora Pipeline failed
ci/woodpecker/push/nix Pipeline failed
ci/woodpecker/push/publish Pipeline was successful

This commit is contained in:
2026-05-17 21:32:48 +03:00
parent 0ed3083306
commit bf05e738e2
2 changed files with 38 additions and 2 deletions
+4 -1
View File
@@ -61,7 +61,10 @@ let default_global_table =
("+", (1, Native 1));
("-", (2, Native 2));
("*", (3, Native 3));
("/", (4, Native 4))
("/", (4, Native 4));
("ABS", (5, Native 5));
("MOD", (6, Native 6));
("REM", (7, Native 7))
]
(* extract all defined global symbols, given the top-level expressions