class number public integer n = 3 procedure show() printf(1,"show: n is %d\n",{n}) end procedure end class number v = new({4}) ?v.n v.n = 5 v.show()