compiler and vm: added division

This commit is contained in:
2026-05-17 20:52:23 +03:00
parent 60d607cb59
commit b433372f95
2 changed files with 21 additions and 14 deletions
+2 -1
View File
@@ -59,7 +59,8 @@ let default_global_table =
SymbolTable.of_list [
("PRINT", (0, Native 0));
("+", (1, Native 1));
("-", (2, Native 2))
("-", (2, Native 2));
("*", (3, Native 3))
]
(* extract all defined global symbols, given the top-level expressions