compiler and vm: added division

This commit is contained in:
2026-05-17 20:59:04 +03:00
parent b433372f95
commit 0ed3083306
2 changed files with 16 additions and 4 deletions
+2 -1
View File
@@ -60,7 +60,8 @@ let default_global_table =
("PRINT", (0, Native 0));
("+", (1, Native 1));
("-", (2, Native 2));
("*", (3, Native 3))
("*", (3, Native 3));
("/", (4, Native 4))
]
(* extract all defined global symbols, given the top-level expressions