Are there any plans? Something like
type Age = Int
type Name = String
type Person = #
(
Age
,
Name
)
We plan to support type aliases at some point.
I would like to point out that the case you are referring to is a misuse of tuples: you should use classes here.