add create functions

This commit is contained in:
2023-02-27 00:07:13 +00:00
parent f0620354c0
commit 1b3a4c44d9
23 changed files with 580 additions and 125 deletions

View File

@@ -14,6 +14,8 @@ func typeof(val any) string {
return "function"
case builtinFunc:
return "function"
case ArMap:
return "map"
}
return "unknown"
}