decimal
2  constant two
8  constant eight
10 constant ten
16 constant sixteen
: n.	( n base -- )
	base @ -rot base ! u. base ! ;
: ln.	( d base -- )
	base @ -rot base ! ul. base ! ;
: x.	( n -- ) ( print in unsigned hex )
	sixteen n. ;
