######### test-case.scm (import chicken scheme) (use extras) (include "script-that-uses-bindings.scm") ######### script-that-uses-bindings.scm (use bindings) (pp (bind (a b c) (list 1 2 3) (list c b a))) ######### notes run with: csi -s test-case.scm fails when test-case.scm uses 'include', works when it uses 'load' instead.