Sujet : Re: Why dial-a-standard is not a thing in Forth
De : sjack (at) *nospam* dontemail.me (sjack)
Groupes : comp.lang.forthDate : 21. Apr 2025, 15:19:55
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vu5k6a$2da4h$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11
User-Agent : tin/2.6.4-20240224 ("Banff") (Linux/6.8.0-58-generic (x86_64))
dxf <
dxforth@gmail.com> wrote:
Out of curiosity what was the conversion method?
-- CVD ( n_x -- n_decimal)
-- Convert to decimal
-- Split given 3 digit number into digits and
-- reassemble digits into a decimal number.
Base is used to get the digits but regardless of the base each digit
is treated as a decimal value, what the user had intended, and assembled
into a decimal number.
-- me