mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
7 lines
228 B
Scheme
7 lines
228 B
Scheme
|
|
(define-library (chibi optimize)
|
|
(import (chibi) (chibi ast) (chibi match) (srfi 1))
|
|
(export register-lambda-optimization!
|
|
replace-references
|
|
fold-every join-seq dotted-tail)
|
|
(include "optimize.scm"))
|