[codeb] Instr update + forgotten testcase
[testub10.git] / codeb / abgabe_bc.0
1 method mymax(that)
2   if this<that then
3     return that;
4   else
5     return this;
6   end;
7 end;