codeb: testfaelle aus codea
[testub10.git] / codeb / codea_lewurm_07.0
1 method w(a)
2         return this < a;
3 end;
4
5 method x()
6         return this < 3;
7 end;
8
9 method y()
10         return 3 < this;
11 end;
12
13 method z()
14         return 3 < 3;
15 end;
16
17 method override()
18         return 0x55555;
19 end;