You have a right to perform your prescribed duty, but you are not entitled to the fruits of action. - Bhagavad Gita
(define life
(lambda (karma)
(cond
((null? karma) 'moksha)
(else (life (cdr karma))))))
(define karma '(ma phaleshu kadachana))
(life karma)