mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 06:19:32 +02:00
11 lines
169 B
ObjectPascal
11 lines
169 B
ObjectPascal
{ this should be rejected because we only accept integer args }
|
|
|
|
program write_it;
|
|
var x,y:real;
|
|
begin
|
|
x:=5.6;
|
|
y:=45.789;
|
|
write(y:2:3,x:3:4);
|
|
{write(y:3.2,x:5.2);}
|
|
end.
|