HCow33 #1 Type oktype Field a:IntEnd TypeLocal ok:oktype = New oktypeok.a = 1ok.a =+ 1Print ok.aIt prints 1? Why?
Rimmsy #2 because you're basically saying: ok.a=1 to increment it, you'll need a colon: ok.a:+1 Easy mistake to make