| No. |
Instruction |
Description |
| 1 |
atom |
The predicate atom is true if its argument is not a cons, and otherwise is false. |
| 2 |
car |
This returns the car of list, which must be a cons or ( ). |
| 3 |
cdr |
This returns the cdr of list, which must be a cons or ( ). |
| 4 |
char string index |
The character at position index of the string is returned as a character object. |
| 5 |
concatenate |
The result is a new sequence that contains all the elements of all the sequences in order. |
| 6 |
cond |
A cond form has a number (possibly zero) of clauses, which are lists of forms.
Each clause consists of a test followed by zero or more consequents. |
| 7 |
defun |
The usual means of defining named functions |
| 8 |
equal |
true if its arguments are structurally similar (isomorphic) objects. |
| 9 |
null |
null is true if its argument is ( ), and otherwise is false. |
| 10 |
open |
Opens a file. |
| 11 |
princ |
princ returns the object as its value. |
| 12 |
print |
Evaluates its single argument and prints it on a new line. |
| 13 |
quote |
(quote x) simply returns x. |
| 14 |
read |
read reads in the printed representation of a Lisp object from input-stream. |
| 15 |
remove |
Returns a sequence from which the elements that satisfy the test have been removed. |
| 16 |
setq |
A simple variable assignment statement |
| 17 |
T |
The value of T is always T. |