codeb: testfaelle aus codea
[testub10.git] / codeb / codea_skinner33_01.0
1 method w()
2         return not 0;
3 end;
4
5 method x()
6         return not (not 0);
7 end;
8
9 method y()
10         return not 3;
11 end;
12
13 method z()
14         return not (not 3);
15 end;
16
17 method aa()
18         return not (not (not 0));
19 end;
20
21 method ab()
22         return not (not (not 3));
23 end;