view tests/parser/string_1.d @ 160:6cb2f4201e2a

Improved static arrays Here is a list of some stuff that works char[3] s = "hey" char[3] s2 = s; s2[1] = 98 // no support for chars, but 98 = 'b' :) int[2] i; i[0] = 2; Still can't pass static arrays to functions
author Anders Halager <halager@gmail.com>
date Tue, 22 Jul 2008 13:29:20 +0200
parents c658172ca8a0
children 08b6ce45b456
line wrap: on
line source


int main()
{
    /* All examples taken from D's Language site */

    char[4]     s1  = "food";

    char[5]     s2  = r"hello";
    char[15]    s3  = r"c:\root\foo.exe";
    char[4]     s4  = r"ab\n";

    char[5]     s5  = `hello`;
    char[15]    s6  = `c:\root\foo.exe`;
    char[4]     s7  = `ab\n`;

    char[5]     s10 = "hello";
    char[15]    s11 = "c:\\root\\foo.exe";
    char[3]     s12 = "ab\n";
    char[3]     s13 = "ab
";

    char[1]     s14 = x"0A";
    char[6]     s15 = x"00 FBCD 32FD 0A";

    /* And some custom ones */

    char[8]     s16 = "\x61\u05D0\U000201A4";
    char[2]     s17 = "\122\522";
    char[6]     s18 = x"61 62 63 64
                        65 66 67 68";

    char[4]     s19 = "\&reg;\&amp;";

    char[4]     s20 = "\&reg;\&amp;"c;
    wchar[2]    s21 = "\&reg;\&amp;"w;
    dchar[2]    s22 = "\&reg;\&amp;"d;

    return 0;
}