"Luke A. Guest" wrote in message news:466561720.524077501.729508.laguest-archeia.com@nntp.aioe.org... > Pascal Obry wrote: >> Le mercredi 09 août 2017 à 22:08 +0100, Luke A.Guest a écrit : >>> 4) multiple return types: >>> >>> function Blah return Integer, Float; >> >> Generalized tuples. I would like this too. >> > > I wanted this in Ada95 when I wanted to return a value and an error code > from a function, had to change it to a procedure, could do it now with an > out parameter on a function but a type would still be better. Error codes are evil. Use an exception. ;-) (Yes, this has happened to me, too, but that doesn't change the above.) Speaking of evil, anonymous types are evil. Why is it hard to declare a record type for this purpose? Randy.