Contact: aviboots(AT)netvision.net.il
32,304 questions
42,479 answers
573 users
def map = [name: "Groovy", age: 13, country: "United States", city: "New York"] map = map.minus([city: "New York"]); map.each{key, value -> println "${key}:${value}"} /* run: name:Groovy age:13 country:United States */