2.sld 331 B

123456789101112131415161718192021
  1. (define-library (aop 2)
  2. (import (scheme base))
  3. (export first second third fourth fifth)
  4. (begin
  5. (define (first l)
  6. (list-ref l 0))
  7. (define (second l)
  8. (list-ref l 1))
  9. (define (third l)
  10. (list-ref l 2))
  11. (define (fourth l)
  12. (list-ref l 3))
  13. (define (fifth l)
  14. (list-ref l 4))))