20 lines
386 B
Scheme
20 lines
386 B
Scheme
#!r6rs
|
|
;; Copyright 2009 Derick Eddington. My MIT-style license is in the file named
|
|
;; LICENSE from the original collection this file is distributed with.
|
|
|
|
(library (srfi srfi-25)
|
|
(export
|
|
array?
|
|
make-array
|
|
shape
|
|
array
|
|
array-rank
|
|
array-start
|
|
array-end
|
|
array-ref
|
|
array-set!
|
|
share-array)
|
|
(import
|
|
(srfi :25 multi-dimensional-arrays all))
|
|
)
|