11 lines
193 B
Text
11 lines
193 B
Text
obj = script("MyClass").new()
|
|
obj.foo = 23
|
|
obj.bar = 42
|
|
|
|
-- ...
|
|
|
|
-- show obj's property names and values
|
|
cnt = obj.count
|
|
repeat with i = 1 to cnt
|
|
put obj.getPropAt(i)&" = "&obj[i]
|
|
end repeat
|