mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 22:08:14 +02:00
14 lines
144 B
ObjectPascal
14 lines
144 B
ObjectPascal
{ %opt=-Sew }
|
|
|
|
{$mode iso}
|
|
program test(input, output);
|
|
|
|
procedure doit(n : integer);
|
|
begin
|
|
writeln(n mod 10);
|
|
end;
|
|
|
|
begin
|
|
doit(23);
|
|
end.
|