view test/staticarrays.d @ 131:5825d48b27d1 trunk

[svn r135] * Merged DMD 1.025 * * Fixed a minor linking order mishap * * Added an command line option -annotate * * Fixed some problems with running optimizations * * Added std.stdio and dependencies to lphobos (still not 100% working, but compiles and links) * * Fixed problems with passing aggregate types to variadic functions * * Added initial code towards full GC support, currently based on malloc and friends, not all the runtime calls the GC yet for memory * * Fixed problems with resolving nested function context pointers for some heavily nested cases * * Redid function argument passing + other minor code cleanups, still lots to do on this end... *
author lindquist
date Fri, 04 Jan 2008 01:38:42 +0100
parents c53b6e3fe49a
children d9d5d59873d8
line wrap: on
line source

void numbers()
{
    bool[8] bools;
    char[8] chars;
    byte[8] bytes;
    short[8] shorts;
    int[8] ints;
    long[8] longs;
    float[8] floats;
    double[8] doubles;
    real[8] reals;
    {
        bools[7] = true;
        floats[7] = 3.14159265;
        {
            printf("bools[0] = %d, bools[7] = %d\n", bools[0], bools[7]);
            printf("floats[0] = %f, floats[7] = %f\n", floats[0], floats[7]);
        }
    }
}

struct S
{
    int i = 42;
    void print()
    {
        printf("S.i = %d\n", i);
    }
}

class C
{
    int i;
    this()
    {
        i = 3;
    }
    void print()
    {
        printf("C.i = %d\n", i);
    }
}

void refs()
{
    void*[5] voids;
    S*[5] structs;
    C[5] classes;
    
    {
        voids[0] = cast(void*)0xA;
        printf("void* = %p\n", voids[0]);
    }
    {
        structs[0] = new S;
        structs[0].print();
        delete structs[0];
    }
    {
        classes[0] = new C;
        classes[0].print();
        delete classes[0];
    }
}

void main()
{
    numbers();
    refs();
}