[RFC] We need an ENTIER that does ceil, CENTIER?
Jose E. Marchesi
jemarch@gnu.org
Sat May 16 16:47:15 GMT 2026
> On 5/16/26 7:35 AM, Jose E. Marchesi wrote:
>
>>> We still need an operation to round up. I’d really love to use “arriba” for that.
>>> But I realize not everybody is a goofy as I am.
>> Sure we Spaniards can be chouvinist too ;)
>>
>> But I would really introduce CEIL and FLOOR instead, the second being a
>> synonym for ENTIER.
>
> I sometimes reach for Spanish when all the English words are taken. :)
>
> For example, I use this Bash function to make the "find" command
> easier to use for the simple case.
>
> busca () { find . -iname "*${1}*" }
>
> -Remington
:)
Reminds me of the "siga" variables in Marcel's code, which are basically
everywhere in the parser:
static NODE_T *
top_down_series (NODE_T *p)
{
bool siga = true;
while (siga)
{
siga = false;
p = top_down_skip_unit (p);
if (p != NO_NODE)
{
if (a68_is_one_of (p, SEMI_SYMBOL, EXIT_SYMBOL, COMMA_SYMBOL, STOP))
{
siga = true;
FORWARD (p);
}
}
}
return p;
}
("siga" means "Please continue" in Spanish)
I now use the same custom in my own code..
More information about the Algol68
mailing list