nested maps in swift
//nested dictionaries let a = [ "assign":[ "*":[] ], "display":[ "foo":[] ] ] let b = a["assign"]! print(b) //["*": ( //)]