Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -1,10 +0,0 @@
|
|||
(defun int-to-binary (val)
|
||||
(let ((x val) (result ""))
|
||||
(while (> x 0)
|
||||
(setq result (concat (number-to-string (% x 2)) result))
|
||||
(setq x (/ x 2)))
|
||||
result))
|
||||
|
||||
(message "5 => %s" (int-to-binary 5))
|
||||
(message "50 => %s" (int-to-binary 50))
|
||||
(message "9000 => %s" (int-to-binary 9000))
|
||||
Loading…
Add table
Add a link
Reference in a new issue