var point = { x: 123, y: 321 }
print(point, point.x, point.y)
var obj = {}
obj.x = 123
obj.str = "ciao"
print(obj, obj.str, obj.x)