testfaelle fuer gesamt bsp
[testub10.git] / gesamt / intelli_02.0
1 method m()
2        var x:= (this - 10).a(10, 5);
3        /*return x;*/
4        var z:= x - a(x, this);
5        /*return z;*/
6        return (x * z) - this;
7 end;
8
9 method a(x y)
10        var u := this - x - y;
11        return u * 2;
12 end;