<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


.R Search:

In String Words in TurboForth Kernal

Word Name: .R
Type: Standard word
Data Stack Signature: n width --
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

Displays the signed number n, right justified by width characters.

Example:

: NEAT ( -- )
  CR
    1 3 .R CR
   10 3 .R CR

  100 3 .R CR
;

Comment:

none

See Also: . 

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>