codeb: testfaelle aus codea
[testub10.git] / codeb / codea_snafu_06.0
1 struct a b end;
2
3 method test64()
4         return this - -2139062144;
5 end;
6
7 method num()
8         return 15 - 4 - 2 - 6 - 7;
9 end;
10
11 method num2()
12         return 15 - (4 - 2 - 6 - 7);
13 end;
14
15 method globcmp()
16         return this.a < this.b;
17 end;
18
19 method globcmp2()
20         return this.a = this.b;
21 end;