> T = (1, ”A string”, 3.4) i.e. an int, string and double. would this suit: data Object = Int' Int | Double' Double | String' String type T = [Object] ?