fork download
  1. #lang racket
  2.  
  3. (define (fold-right kons knil clist)
  4. (if (null? clist)
  5. knil
  6. (kons (car clist) (fold-right kons knil (cdr clist)))))
Success #stdin #stdout 0.55s 88388KB
stdin
Standard input is empty
stdout
Standard output is empty