home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / feel0_89.lha / Feel / Boot / list.em < prev    next >
Encoding:
Text File  |  1993-07-05  |  400 b   |  25 lines

  1. ;; Eulisp Module
  2. ;; Author: pab
  3. ;; File: list.em
  4. ;; Date: Tue Jun 29 21:44:41 1993
  5. ;;
  6. ;; Project:
  7. ;; Description: 
  8. ;;
  9.  
  10. (defmodule list
  11.   (init macros0 extras0 gens null pair defs )         
  12.   ()
  13.   
  14.   (expose null pair)
  15.  
  16.   (defmethod reverse ((sequence <list>))
  17.     ;; constructs a new sequence which is the reverse of sequence
  18.     (reverse-list sequence))
  19.  
  20.   (defconstant x ())
  21.  
  22.  
  23.   ;; end module
  24.   )
  25.