srfi-214

Fork of <https://github.com/scheme-requests-for-implementation/srfi-214> for CHICKEN

git clone https://git.8pit.net/srfi-214.git

 1((author "Adam Nelson")
 2 (maintainer "Sören Tempel")
 3
 4 ;; https://srfi.schemers.org/srfi-214/srfi-214.html#copyright
 5 (license "MIT")
 6
 7 (synopsis "SRFI 214: Flexvectors")
 8 (version "1.0.1")
 9 (category data)
10 (test-dependencies srfi-64)
11 (dependencies srfi-1 srfi-133 srfi-145)
12 (components
13   (extension srfi-214
14     (source "srfi-214.scm")
15     (source-dependencies
16       "./implementation/flexvectors.sld"
17       "./implementation/flexvectors-body1.scm"
18       "./implementation/flexvectors-body2.scm"))))