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