pascalabcnet/TestSamples/CompilationSamples/del1.pas

22 lines
347 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//Тест делегатов с использованием PCU
uses
del1_u, del1_u2;
procedure MyProc(y: integer);
begin
writeln(y);
end;
procedure MyProc2(y: integer);
begin
writeln(y*2);
end;
begin
PrintEvent += MyProc;
PrintEvent += MyProc2;
PrintEvent += MyProc3;
PrintEvent(20); //Выведет 20, 40, 60
readln;
end.