Skip to content

Instantly share code, notes, and snippets.

@omonien
Last active February 1, 2020 22:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omonien/b227b9506c83bdec70163bdfcee245a9 to your computer and use it in GitHub Desktop.
Save omonien/b227b9506c83bdec70163bdfcee245a9 to your computer and use it in GitHub Desktop.
Using other units
unit Unit1;
interface
function Foobar(AValue:integer):integer;
implementation
uses
Unit2;
function Foobar(AValue:integer):integer;
begin
result := Foo(AValue); //Foo is declared and implemented in Unit2.pas
end;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment