Est-il possible d'ajouter une autre fonction procC ici pour que la séquence d'évaluation soit procA-> procB-> procC-> procA ...?Puis-je avoir une co-routine de trois fonctions utilisant des continuations dans Scheme?
(define (procA another-fun)
(let loop ((n 5))
(display "In Proc A \n")
(set! another-fun (call/cc another-fun))
(when (> n 0)
(loop (- n 1)))))
(define (procB another-fun)
(let loop ((n 5))
(display "In Proc B \n")
(set! another-fun (call/cc another-fun))
(when (> n 0)
(loop (- n 1)))))