pascalabcnet/TestSamples/CompilationSamples/TryFinally.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

15 lines
236 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.

// Иллюстрация finally - срабатывает независимо от того, произошло исключение или нет
begin
try
if Random(2)=1 then
raise Exception.Create('Ку-ку!');
finally
write(1);
readln;
exit;
write(2);
end;
end.