diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bane.20.cdr15.md | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/bane.20.cdr15.md b/doc/bane.20.cdr15.md index 36f07b5..d27fd47 100644 --- a/doc/bane.20.cdr15.md +++ b/doc/bane.20.cdr15.md @@ -20,13 +20,14 @@ and indeed it is only moderate work to port between them Write an ISLisp program, making the following adaptations: -| ISLisp | CL | -| ----------------- | ----------------- | -| for | do | -| quotient | / | -| create | make-instance | -| (class x) | (find-class 'x) | -| (standard-output) | *standard-output* | +| ISLisp | CL | +| ----------------- | ------------------- | +| (class x) | (find-class 'x) | +| create | make-instance | +| for | do | +| quotient | / | +| (standard-output) | *standard-output* | +| (while t b) | (loop while t do b) | ISLisp doesn't have the following features (and probably many more): |