t-global-bindings.scm 257 B

1234567891011121314
  1. ;; Are global bindings reachable at run-time? This relies on the
  2. ;; `object-ref' and `object-set' instructions.
  3. (begin
  4. (define the-binding "hello")
  5. ((lambda () the-binding))
  6. ((lambda () (set! the-binding "world")))
  7. ((lambda () the-binding)))