fix delete keyword not doing anything when deleting a variable, and move length calculation to only when needed

This commit is contained in:
2024-05-30 17:03:29 +01:00
parent 5afa0b10c7
commit 7aadb812e4
5 changed files with 120 additions and 26 deletions

View File

@@ -10,8 +10,8 @@ var Args = os.Args[1:]
type stack = []ArObject
const VERSION = "3.0.7"
const VERSION_NUM = 5
const VERSION = "3.0.8a"
const VERSION_NUM = 6
func newscope() ArObject {
return Map(anymap{})