Hello All,
I have a long code which include lines for writing stuffs into an assigned
writable text-file F.
WRITELN(F: 'Hello');
WRITELN(F, 'Hello');
The code can be compiled with 3.2.2 in i386/windows and i386/linux and runs both times at perfection.
But... i'm wondering if the first
WRITELN(F: 'Hello');
is not proper Pascal.___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
Le 27.07.2022 à 17:41, DougC via fpc-pascal a écrit :
WRITELN(F: 'Hello');
is not proper Pascal.
Yes, Doug, I agree ; but it is compiled with no warning and runs perfectly. Now, why the compiler do not
complain... ?
Cheers, Ched'
___
fpc-pascal ma
Am 27.07.2022 um 15:14 schrieb Ched via fpc-pascal:
Hello All,
I have a long code which include lines for writing stuffs into an
assigned writable text-file F.
WRITELN(F: 'Hello');
WRITELN(F, 'Hello');
The code can be compiled with 3.2.2 in i386/windows and i386/linux and
runs both t