ub0421c.pp 192 B

1234567891011121314151617181920
  1. unit ub0421c;
  2. interface
  3. {$mode objfpc}
  4. type
  5. cl1=class
  6. f1:longint;
  7. constructor create;
  8. end;
  9. implementation
  10. constructor cl1.create;
  11. begin
  12. f1 := 10;
  13. end;
  14. end.