home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / unix / scheme_1 / !Scm_slib_sc3 < prev    next >
Encoding:
Text File  |  1992-10-19  |  277 b   |  12 lines

  1. ;;;; Implementation of rev3 procedures eliminated in subsequent versions.
  2. ;;; Copyright (C) 1991 Aubrey Jaffer.
  3.  
  4. (define (last-pair l)
  5.   (if (pair? (cdr l)) (last-pair (cdr l)) l))
  6.  
  7. (define t #t)
  8.  
  9. (define nil #f)
  10.  
  11. ;;;I can't find procedure APPROXIMATE in the Revised^3 Report.
  12.