mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-06 18:50:57 +01: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.
|