testcib_bird.pas 167 B

12345678910111213141516
  1. unit testcib_bird;
  2. {$mode objfpc}
  3. interface
  4. function Fly(w : word): word;
  5. implementation
  6. function Fly(w : word): word; inline;
  7. begin
  8. Result:= 3 * w;
  9. end;
  10. end.