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