codeb: testfaelle aus codea
[testub10.git] / codeb / codea_snafu_04.0
1 method pvs1(a b)
2         return (this - a) * b;
3 end;
4
5 method pvs2(a b)
6         return this - (a * b);
7 end;
8
9 method pvs3(a b)
10         return (this * a) - b;
11 end;
12
13 method pvs4(a b)
14         return this * (a - b);
15 end;