Re: include bug in guile

2016-03-31 Thread rain1
On 2016-03-31 13:39, Wette, Matthew R (3441) wrote: On Mar 29, 2016, at 6:05 PM, Wette, Matthew R (3441) wrote: On Mar 29, 2016, at 10:16 AM, ra...@openmailbox.org wrote: I think this is a bug in guile relating to "include": a.scm: (define a 1) b.scm: (include "a.scm") (display a) (newline)

Re: include bug in guile

2016-03-31 Thread Wette, Matthew R (3441)
On Mar 29, 2016, at 6:05 PM, Wette, Matthew R (3441) mailto:matthew.r.we...@jpl.nasa.gov>> wrote: On Mar 29, 2016, at 10:16 AM, ra...@openmailbox.org wrote: I think this is a bug in guile relating to "include": a.scm: (define a 1) b.scm: (include "a.scm") (displ

Re: include bug in guile

2016-03-29 Thread Wette, Matthew R (3441)
On Mar 29, 2016, at 10:16 AM, ra...@openmailbox.org wrote: I think this is a bug in guile relating to "include": a.scm: (define a 1) b.scm: (include "a.scm") (display a) (newline) guile -l b.scm # prints 1 now update a.scm: (define a 2) guile -l b.scm # still pr

include bug in guile

2016-03-29 Thread rain1
I think this is a bug in guile relating to "include": a.scm: (define a 1) b.scm: (include "a.scm") (display a) (newline) guile -l b.scm # prints 1 now update a.scm: (define a 2) guile -l b.scm # still prints 1