Revision b1f4c7a9f230d031987e0e9178f1d10c66c19fbc authored by Bill Joy on 21 April 1979, 11:46:59 UTC, committed by Bill Joy on 21 April 1979, 11:46:59 UTC
Work on file upgrade/libretro/getpwent.c.16u

Synthesized-from: 2bsd
1 parent cabad19
Raw File
digits.p
program digits(output);
var r: real;
begin
r := 0.;
r := .0;
r := 1.e10;
r := .05e-10;
writeln(r)
end.
back to top