mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
cleanup, cut over to (srfi x)
This commit is contained in:
parent
bc732d3cb9
commit
de34fcac6b
2 changed files with 20 additions and 8 deletions
10
srfi/1.sld
10
srfi/1.sld
|
@ -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
|
||||
|
|
18
srfi/2.sld
18
srfi/2.sld
|
@ -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"))
|
||||
|
|
Loading…
Add table
Reference in a new issue