about summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorDarren Bane <darren.bane@emdalo.com>2020-08-21 19:40:30 +0100
committerDarren Bane <darren.bane@emdalo.com>2020-08-21 19:40:30 +0100
commite6931993d7193b60881d0303110974b6af6af852 (patch)
treec6ace92a2e93aa13f3b44d32439d93fd29bfaacb /doc
parent5c4dfb5d3e84be9f7e4b9ea8383fcb9de70862aa (diff)
downloadlsp-e6931993d7193b60881d0303110974b6af6af852.tar.gz
Some more ISLisp->CL examples
Diffstat (limited to 'doc')
-rw-r--r--doc/bane.20.cdr15.md15
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):
 
afe47d510ad0'>5babe16f ^
70dba10a ^
b8682e73 ^
113bae73 ^
a060a4dc ^

44d26b77 ^
2fcf7e24 ^
113bae73 ^
44d26b77 ^

42349345 ^
6508ab51 ^


3b81d748 ^
9586db16 ^

9a524793 ^
3b81d748 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42