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