codea: testfaelle von intelli
[testub10.git] / codea / intelli_00.0
1 method f(a b c)
2         return (a*5) - (b*c) - this;
3 end;
4
5 /*verschachtelte mult*/
6 method g(a b c d)
7        return ((a * (b * (c * (-4)))) - d);
8 end;