Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
#lang racket
|
||||
|
||||
(define (try n)
|
||||
(printf "Original number: ~s (0x~x)\n" n n)
|
||||
(define 4octets (integer->integer-bytes n 4 #f))
|
||||
(printf "Octets: ~a (byte-string: ~s)\n"
|
||||
(string-join (map (λ(o) (~r o #:base 16))
|
||||
(bytes->list 4octets))
|
||||
":")
|
||||
4octets)
|
||||
(define m (integer-bytes->integer 4octets #f))
|
||||
(printf "Back to a number: ~s (~a)\n"
|
||||
m (if (= m n) "OK" "BAD")))
|
||||
|
||||
(for-each try '(#x200000 #x1fffff))
|
||||
Loading…
Add table
Add a link
Reference in a new issue