begin coverting old code that uses non oop numbers to use oop numbers

This commit is contained in:
2024-07-10 01:47:15 +01:00
parent 7c23db80d4
commit 53f7637234
19 changed files with 775 additions and 135 deletions

View File

@@ -8,6 +8,8 @@ func typeof(val any) string {
return "boolean"
case string:
return "string"
case number:
return "number"
case []any:
return "array"
case anymap: