This is the mail archive of the guile@cygnus.com mailing list for the guile project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
OK, the previous version of jacal.scm had a bug. Here's the correct one: ---------------------------------------------------------------------- (define-module (jacal) :use-module (ice-9 slib)) (define-module (ice-9 slib)) (define horner #f) ; Workaround for a bug in Jacal (define-module (jacal)) (slib:load "jacal/math.scm") (define-public math math) ----------------------------------------------------------------------