include srfis in std
This commit is contained in:
parent
5cdbb7e6b9
commit
3f6d7f3afc
3 changed files with 17 additions and 1 deletions
4
flexvector.sls
Normal file
4
flexvector.sls
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
(library (meh flexvector)
|
||||||
|
(export)
|
||||||
|
(import (chezscheme))
|
||||||
|
(export (import (srfi :214))))
|
4
generator.sls
Normal file
4
generator.sls
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
(library (meh generator)
|
||||||
|
(export)
|
||||||
|
(import (chezscheme))
|
||||||
|
(export (import (srfi :158))))
|
10
std.sls
10
std.sls
|
@ -1,3 +1,4 @@
|
||||||
|
;; todo: numerics (lerp)
|
||||||
;; amalgam of useful stuff
|
;; amalgam of useful stuff
|
||||||
(library (meh std)
|
(library (meh std)
|
||||||
(export
|
(export
|
||||||
|
@ -17,7 +18,14 @@
|
||||||
(import (chezscheme))
|
(import (chezscheme))
|
||||||
|
|
||||||
(export (import (meh match))
|
(export (import (meh match))
|
||||||
(import (meh record)))
|
(import (meh record))
|
||||||
|
;; these srfis are included in std instead of a forward library because they are
|
||||||
|
;; * final
|
||||||
|
;; * implemented by chez-srfi
|
||||||
|
;; * broadly useful
|
||||||
|
;; * unlikely to have name conflicts
|
||||||
|
(import (srfi :17))
|
||||||
|
(import (srfi :26)))
|
||||||
|
|
||||||
;;; SYNTAX
|
;;; SYNTAX
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue