diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-15 20:25:03 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | 1e90df9df37f8ccfe029dcf3e3dc3905779c378b (patch) | |
tree | ccba3f787dff1e4c382052629c94ebee493acd46 /src/test/hanoi.lisp | |
parent | 3fdc4f5087a51d031f6f0c82354794466635f2bf (diff) |
altos/lisp: remove nth from hanoi.lisp
It's now in ROM.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test/hanoi.lisp')
-rw-r--r-- | src/test/hanoi.lisp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/hanoi.lisp b/src/test/hanoi.lisp index 66a8d04b..aece2ba0 100644 --- a/src/test/hanoi.lisp +++ b/src/test/hanoi.lisp @@ -106,12 +106,6 @@ ) ) -(defun nth (list n) - (cond ((= n 0) (car list)) - ((nth (cdr list) (1- n))) - ) - ) - ; Replace a stack in the list of stacks ; with a new value |