mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
13 lines
169 B
ObjectPascal
13 lines
169 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$mode objfpc}
|
|
|
|
begin
|
|
try
|
|
writeln ('Start: create game object');
|
|
except
|
|
on e : exception do
|
|
writeln ('Exception: ', e.message);
|
|
end;
|
|
end.
|