I tried running the following scheme code:
(define affiche-gagnant
(lambda (j1 j2 g1 g2)
(begin
(display "Le gagnant est : ")
(display
(cond ((> g1 g2) j1)
((< g1 g2) j2)
(else (begin (display "personne. ") (display j1) (display " et ") (display j2) (display " sont exaequos. "))))))))
But I get the following output:
Le gagnant est : personne. Alper et Ezgi sont exaequos. #<void>
Where did the #void come from? How do I get rid of it?
Oops, wrong answer. You have an extra display:
Should work.