testcib_elk.pas 197 B

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