https://github.com/JuliaLang/julia
Raw File
Tip revision: b7042cb6ffde8de554b2a0920e2f171d4a3ffb67 authored by Jeff Bezanson on 08 February 2019, 18:55:14 UTC
WIP: add copyfile and use it to implement `cp`
Tip revision: b7042cb
bin2hex.scm
(define (read-u8) (io.read *input-stream* 'uint8))
(define modulo mod)
(define display princ)
(let loop ((b (read-u8))
           (i 0))
  (if (not (eof-object? b))
      (begin
        (if (> i 0)
            (display ", "))
        (display "0x") (display (number->string b 16))
        (if (= 0 (modulo (+ 1 i) 16))
            (newline))
        (loop (read-u8) (+ 1 i)))))
(newline)
back to top