For my programming languages class I\'m supposed to write a function in Scheme to reverse a list without using the pre-made reverse function. So far what I got was
(define (my-reverse L) (fold cons '() L)) ;;left fold