| I create a template, arc> (deftem test
x nil)
((x #<procedure: g1748>))
initialize one, and set one of its fields (I don't know what they're called) to 1 using = arc> (let y (inst 'test)
(= y!x 1))
nil
but this returns nil. y!x has been set to 1 arc> (let y (inst 'test)
(= y!x 1)
y!x)
3
though. Is this a bug or what am I not getting? |