comparison tests/mini/arrays13.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/arrays13.d@c44e6a711885
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module arrays13;
2
3 extern(C) int printf(char*, ...);
4
5 void main()
6 {
7 char[] a = "hello";
8
9 assert(a > "hel");
10 assert(a >= "hel");
11 assert(a < "helloo");
12 assert(a <= "helloo");
13 assert(a > "betty");
14 assert(a >= "betty");
15 assert(a == "hello");
16 assert(a <= "hello");
17 assert(a >= "hello");
18 }