view tests/parser/int_1.d @ 179:2a1a635bd531

Changes the way messages can be displayed. Also added a toString to DType's for type printing.
author Anders Johnsen <skabet@gmail.com>
date Fri, 25 Jul 2008 01:21:07 +0200
parents c3b24e7e8cf8
children
line wrap: on
line source


int main()
{
    int   i1  = 123_456;
    int   i2  = 1_2_3_4_5_6_;

    int   i3  = 43_422_253;
    long  i4  = 34_322_523_123;

    long  i5  = 43_422_253L;
    long  i6  = 34_322_523_123L;

    uint  i7  = 43_422_253u;
    ulong i8  = 18_446_744_073_709_551_615U;

    ulong i9  = 0UL;
    ulong i10 = 18_446_744_073_709_551_615LU;

}