about summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorDarren Bane <dbane@tilde.institute>2020-08-21 19:23:52 +0100
committerDarren Bane <dbane@tilde.institute>2020-08-21 19:23:52 +0100
commit5c4dfb5d3e84be9f7e4b9ea8383fcb9de70862aa (patch)
tree081dbc285bfe6c39343248af9387776d86e7a039 /doc
parent005aa834772ecb16fce512c05821db862cef8b95 (diff)
downloadlsp-5c4dfb5d3e84be9f7e4b9ea8383fcb9de70862aa.tar.gz
Tabulate ISLisp->CL equivalents
Diffstat (limited to 'doc')
-rw-r--r--doc/bane.20.cdr15.md12
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):