[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Query on FIO.WriteCardinal(StdOut,...)
From: |
Gaius Mulley |
Subject: |
Re: Query on FIO.WriteCardinal(StdOut,...) |
Date: |
Sat, 22 Jul 2023 10:09:50 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) |
john o goyo <jog37@riddermarkfarm.ca> writes:
> Greetings, Gaius.
>
> There seems to be a problem with FIO.WriteCardinal(StdOut,...).
>
> Here is my output.mod:
>
> MODULE output;
>
> FROM FIO IMPORT WriteString, WriteCardinal, WriteLine, StdOut;
>
> PROCEDURE WriteOut(n :CARDINAL);
> BEGIN
> WriteString(StdOut, "n = ");
> WriteCardinal(StdOut, n);
> WriteLine(StdOut)
> END WriteOut;
>
> BEGIN
> WriteString(StdOut, "Counting in gm2: ");
> WriteOut(0);
> WriteOut(1);
> WriteOut(2);
> WriteOut(3);
> WriteOut(1000);
> WriteOut(1024)
> END output.
>
> Here is the actual output:
>
> Counting in gm2: n =
> n =
> n =
> n =
> n =
> n =
>
> Please advise.
>
> Sincerely,
> john
Hi John,
all fixed now in the gcc git - thanks for the bug report!
regards,
Gaius