Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
(de printNumber (N Base)
|
||||
(when (>= N Base)
|
||||
(printNumber (/ N Base) Base) )
|
||||
(let C (% N Base)
|
||||
(and (> C 9) (inc 'C 39))
|
||||
(prin (char (+ C `(char "0")))) ) )
|
||||
|
||||
(printNumber 26 16))
|
||||
(prinl)
|
||||
(printNumber 123456789012345678901234567890 36))
|
||||
(prinl)
|
||||
Loading…
Add table
Add a link
Reference in a new issue