pascalabcnet/InstallerSamples/WhatsNew/3_11_0/exit_param1.pas

9 lines
96 B
ObjectPascal
Raw Permalink Normal View History

2026-02-03 11:53:30 +03:00
// 3.11 - exit(param)
function fff: integer;
begin
exit(3)
end;
begin
Print(fff());
end.