1 2 3 4 5 6 7 8 9 10 11 12
target = { val: 1 add: (n)=> @val += n @val } result = with target val = 100 add 2 print result, target.val