fork download
  1.  
  2. def person = [fname: "john", sname: "smith", age: 25]
  3.  
  4. println person.keySet().last()
  5. println person.entrySet().last()
  6. println person.entrySet().last().value
Success #stdin #stdout 2.79s 138528KB
stdin
Standard input is empty
stdout
age
age=25
25