| No. | Instruction | Description | 
 
     
     | 1 | atom | The predicate atomis 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 indexof thestringis 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 condform 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 | trueif its arguments are structurally similar (isomorphic) objects. | 
 
  
    
     | 9 | null | nullis true if its argument is ( ), and otherwise is false. | 
     
     | 10 | open | Opens a file. | 
 
 
     
     | 11 | princ | princreturns the object as its value. | 
 
   
     
     | 12 | print | Evaluates its single argument and prints it on a new line. | 
 
     
     | 13 | quote | (quote x)simply returnsx. | 
 
     
     | 14 | read | readreads 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. |