add readUntil

This commit is contained in:
2023-06-29 00:57:52 +01:00
parent 9649c33217
commit af934e0429
18 changed files with 302 additions and 103 deletions

View File

@@ -12,6 +12,12 @@ type stack = []ArObject
const VERSION = "3.0.0"
// Example struct
type Person struct {
Name string
Age int
}
func newscope() ArObject {
return Map(anymap{})
}