[Haskell-beginners] tuple space

Imants Cekusins imantc at gmail.com
Fri Feb 5 21:43:42 UTC 2016


> 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]

?


More information about the Beginners mailing list