mirror of
https://github.com/nineties/planckforth
synced 2024-12-27 21:58:35 +01:00
fix comment
This commit is contained in:
parent
9f862f44e1
commit
8b5782fc19
1 changed files with 1 additions and 2 deletions
|
@ -1017,8 +1017,7 @@ decimal \ set default to decimal
|
||||||
: print-uint ( u1 u2 -- )
|
: print-uint ( u1 u2 -- )
|
||||||
over /mod ( base mod quot )
|
over /mod ( base mod quot )
|
||||||
?dup if
|
?dup if
|
||||||
\ mod base quot base
|
>r over r> \ ( base mod base quot )
|
||||||
>r over r>
|
|
||||||
recurse
|
recurse
|
||||||
then
|
then
|
||||||
dup 10 < if '0' + else 10 - 'a' + then emit
|
dup 10 < if '0' + else 10 - 'a' + then emit
|
||||||
|
|
Loading…
Reference in a new issue