<#  ( -- )

published: 1 February 2023 / updated 1 February 2023

Lire cette page en français

 

Compile Only

Begin numeric conversion

Example:

\ display byte in binary format 
: x. ( c -- ) 
    0 base @ >r  
    2 base !  
    <# # # # # # # # # #> type  
    r> base !  
  ;