Implement 'list-tail' in Scheme

Issue #29 new
Katie Burke created an issue
(list-tail '(a b c) 0)

Should return (a b c) according to The Scheme Programming Language but instead, I get this:

scheme>>> (list-tail '(a b c) 0)
Traceback (most recent call last):
File "stdin", line 1, col 2
RunTimeError: unbound variable 'list-tail'

Comments (1)

  1. Log in to comment