https://github.com/JuliaLang/julia
Raw File
Tip revision: 9cc8b3d35a200be9ecd6a2dce388d92e16bb1d07 authored by Steven G. Johnson on 10 July 2023, 14:43:39 UTC
fix bootstrap failure
Tip revision: 9cc8b3d
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