1 2 3 4 5 6 7 8 9 10
{ def o = obj { a: "this is the value of A" b: "this is the value of B" }; print o.a; o.a = "a" print o.a; }