11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
|
|
||
|
(library (srfi private include compat)
|
||
|
|
||
|
(export search-paths)
|
||
|
|
||
|
(import (chezscheme))
|
||
|
|
||
|
(define (search-paths)
|
||
|
(map car (library-directories)))
|
||
|
|
||
|
)
|