cleanup, cut over to (srfi x)

This commit is contained in:
Justin Ethier 2016-08-20 18:00:55 -04:00
parent bc732d3cb9
commit de34fcac6b
2 changed files with 20 additions and 8 deletions

View file

@ -1,4 +1,12 @@
(define-library (1) ; (srfi 1)
;;;; Cyclone Scheme
;;;; https://github.com/justinethier/cyclone
;;;;
;;;; Copyright (c) 2014-2016, Justin Ethier
;;;; All rights reserved.
;;;;
;;;; This module is an interface to the list library.
;;;;
(define-library (srfi 1)
(import (scheme base))
(export
xcons tree-copy make-list list-tabulate cons* list-copy

View file

@ -1,8 +1,12 @@
(define-library (2) ; (srfi 2)
;;;; Cyclone Scheme
;;;; https://github.com/justinethier/cyclone
;;;;
;;;; Copyright (c) 2014-2016, Justin Ethier
;;;; All rights reserved.
;;;;
;;;; This module is an interface SRFI-2 and-let*
;;;;
(define-library (srfi 2)
(import (scheme base))
(export
and-let*
)
(include "2.scm")
(begin)
)
(export and-let*)
(include "2.scm"))