compiler.pas 469 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. $Id$
  3. Fake compiler unit
  4. }
  5. unit compiler;
  6. interface
  7. function Compile(const cmd:string):longint;
  8. implementation
  9. uses
  10. comphook;
  11. function Compile(const cmd:string):longint;
  12. begin
  13. do_comment(V_Info,'Fake Compiler');
  14. do_comment(V_Info,'Cmd = "'+cmd+'"');
  15. end;
  16. end.
  17. {
  18. $Log$
  19. Revision 1.1 1998-12-22 14:27:54 peter
  20. * moved
  21. Revision 1.1 1998/12/10 23:54:28 peter
  22. * initial version of the FV IDE
  23. * initial version of a fake compiler
  24. }