I want to dynamically add a map to a list like this:
def map = [:]; def list= []; def n = 10; n.times{ map.put("Int I", it); list.add(map); } pr