On Tue, Nov 18, 2008 at 09:15:52AM +0100, Paolo Redaelli wrote:
> I have a little proposal for NATURALs.
>
> People coming from other languages will find code like
>
> n8 := 1.to_natural_8
> n16 := 1.to_natural_16
> n32 := 1.to_natural_32
> n64 := 1.to_natural_64
Speaking as a reader, I find the above much more readable and no
more verbose or cumbersome than
>
> n8 := {NATURAL_8 1}
> n16 := {NATURAL_16 1}
> n32 := 1U
> n64 := {NATURAL_64 1}
>
-- hendrik