Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

test.lisp

  • Florian Margaine's avatar
    7dc76a6c
    Switch to global variables instead of special variables. · 7dc76a6c
    Florian Margaine authored
    As Charles Jackson pointed out in #1, the dynamic scope of special
    variables makes no sense for persistent variables; would the
    persistence change dynamically, or the stored value changes for every
    dynamic scope change, and everything is thrown out of the window as
    soon as multithreading enters the picture?
    
    Switching to global variables is a much easier model to work with, as
    suggested by Charles.
    7dc76a6c
    History
    Switch to global variables instead of special variables.
    Florian Margaine authored
    As Charles Jackson pointed out in #1, the dynamic scope of special
    variables makes no sense for persistent variables; would the
    persistence change dynamically, or the stored value changes for every
    dynamic scope change, and everything is thrown out of the window as
    soon as multithreading enters the picture?
    
    Switching to global variables is a much easier model to work with, as
    suggested by Charles.