add racket init config

This commit is contained in:
LordMZTE 2023-09-30 15:37:13 +02:00
parent 0f8a7fd359
commit d1ab82fe9e
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -0,0 +1,6 @@
(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)])))