Implement Exponents in Scheme

Issue #22 new
Katie Burke created an issue

scheme>>> expt 2 3 Traceback (most recent call last): File "stdin", line 1, col 1 RunTimeError: unbound variable 'expt'

Comments (4)

  1. Doug Blank

    If you get the error "unbound variable" that means that it isn't defined and implemented. So, to be precise, the Exponent operator isn't broken, it just hasn't been implemented yet.

  2. Log in to comment