comparison test/terms.d @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1 module terms;
2
3 void f()
4 {
5 int i = 42;
6 if (i > 25)
7 return;
8 if (i < 25) {
9 return;
10 }
11
12 if (i > 100)
13 return;
14 else
15 return;
16
17 if (i < 1000) {
18 return;
19 }
20 else {
21 return;
22 }
23 }
24
25 void main()
26 {
27 int i = 42;
28 if (i > 25)
29 return;
30 if (i < 25) {
31 return;
32 }
33
34 if (i > 100)
35 return;
36 else
37 return;
38
39 if (i < 1000) {
40 return;
41 }
42 else {
43 return;
44 }
45 }