Composite Literals - Groovin' with Groovy
ages = [ 'Jim': 30, 'Bill': 24, 'Bob': 55 ]
ages.each { name, age | println "${name} is ${age} years old." }

[Example 9 Output]

Example 9 (also note the use of a GString)