RosettaCodeData/Task/Include-a-file/Delphi/include-a-file.delphi
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
234 B
Text

uses SysUtils; // Lets you use the contents of SysUtils.pas from the current unit
{$Include Common} // Inserts the contents of Common.pas into the current unit
{$I Common} // Same as the previous line, but in a shorter form