comparison tests/parser/string_1.d @ 104:7ff4bc2accf2 new_gen

Lexing more types of strings. Now all's left is to parse the string in the AST.
author Anders Johnsen <skabet@gmail.com>
date Wed, 21 May 2008 21:05:23 +0200
parents
children 89db676fbacb 41ccd50e7cbc
comparison
equal deleted inserted replaced
103:09b4d74cb3f5 104:7ff4bc2accf2
1
2 int main()
3 {
4 /* All examples taken from D's Language site */
5
6 char[4] s1 = "food";
7
8 char[5] s2 = r"hello";
9 char[15] s3 = r"c:\root\foo.exe";
10 char[4] s4 = r"ab\n";
11
12 char[5] s5 = `hello`;
13 char[15] s6 = `c:\root\foo.exe`;
14 char[4] s7 = `ab\n`;
15 char[4] s9 = `abn\`;
16
17 char[5] s10 = "hello";
18 char[15] s11 = "c:\\root\\foo.exe";
19 char[3] s12 = "ab\n";
20 char[3] s13 = "ab
21 ";
22
23 char[1] s14 = x"0A";
24 char[6] s15 = x"00 FBCD 32FD 0A";
25
26 return 0;
27 }