codeb ifs and whiles
[testub10.git] / codeb / intelli_09.0
1 method m(a)
2         var u := 10;
3         if this < 50 then
4                 if 10 < a then
5                         return a - 10;
6                 end;
7                 var x := 20;
8                 u := u - (x * -1);
9         end;
10         return u;
11 end;