I have a file open in editor and a scheme running in a console window next to it. Here is what is in the file:
(import (rnrs))
(define THIS "Hello")
(display THIS) ;; does not work if loaded
I edit definitions in a file, save it, then switch to scheme window and execute
(load "c:\\path\\to\\filename.ss")
I see "Hello" in the output, but when I try to access THIS -- THIS is undefined.
I am using IronScheme (if it is relevant) and I am new to scheme in general, so how do I change definitions in a session by modifying and re-reading a file?