mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 03:08:20 +02:00
15 lines
225 B
ObjectPascal
15 lines
225 B
ObjectPascal
{ %version=1.1 }
|
|
|
|
{$ifdef fpc}{$MODE OBJFPC}{$endif}
|
|
uses sysutils;
|
|
var
|
|
p:pointer;
|
|
begin
|
|
try
|
|
getmem(p, 1000000000);
|
|
except
|
|
on eoutofmemory do writeln('out of memory!');
|
|
end;
|
|
writeln('program lasts...')
|
|
end.
|