﻿// The include directive loads code from an external file,
// allowing reuse and better organization of your code.
{$INCLUDE 'Example include file.inc'}

begin
  // Use a function contained in the included file.
  FileName := ExampleFunction;
end.
