01 (define push 02 (lambda (element stack) 03 (append stack (cons element '())))) 04 05 (push 'd '(a b c)) ; => (a b c d)
Post a Comment
No comments:
Post a Comment