Fixed layout (overfull hbox)

This commit is contained in:
Georges Dupéron 2017-05-06 03:39:32 +02:00
parent 6e6c91c4cd
commit c6783850d1

View File

@ -47,7 +47,9 @@ by your macro.
[(_ vᵢ …)
#'(let ([tempᵢ vᵢ] …)
(unless (integer? tempᵢ)
(printf "Warning: ~a should be an integer, got ~a.\n" 'vᵢ tempᵢ))
(printf "Warning: ~a should be an integer, got ~a.\n"
'vᵢ
tempᵢ))
(+ tempᵢ …))]))
(sum 1 2 3)