pascalabcnet/InstallerSamples/LanguageFeatures/DllTest/MyDll.pas

16 lines
200 B
ObjectPascal
Raw Permalink Normal View History

// Dll-библиотека
2015-05-14 22:35:07 +03:00
library MyDll;
const n = 10;
function add(a,b: integer): integer;
begin
Result := a + b;
end;
procedure PrintPascalABCNET;
begin
writeln('PascalABC.NET');
end;
end.