mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 20:43:00 +01:00
6 lines
284 B
Racket
6 lines
284 B
Racket
(current-print (λ (x)
|
|
(cond
|
|
[(void? x) #f]
|
|
;; Also show fractions as decimals.
|
|
[(and (exact? x) (not (exact-integer? x))) (printf "~a = ~a" x (exact->inexact x))]
|
|
[else (pretty-print x)])))
|