On Thu, Sep 04, 2003 at 08:15:01PM -0400, Fredrik (Naranek) Hubinette (Real Build Master) @ Pike (-) developers forum wrote:
Should we have an identity function for the fun of it (Haskell has id and Smalltalk has yourself)?
Possibly, but what should it be called?
this_function() ?
Should we add the possibility to define default values for types, e.g. typedef int myint = 7;
No. Although, you can already do typedef int(7..7) myint;
that is different. typedef int myint = 7; myint foo;
foo++; foo is now 8;
greetings, martin.