scheme
                                
                                 scheme copied to clipboard
                                
                                    scheme copied to clipboard
                            
                            
                            
                        Write You a Scheme
https://github.com/write-you-a-scheme-v2/scheme/blob/e09e25cbbd77786a1fdb595e169be52c3f619063/docs/01_introduction.md?plain=1#L43-L44 While working through the tutorial, I noticed that this would probably make more sense as a qualified import. I can definitely make the change but looking for guidance :smile:
While working through the Tutorial, I found this minor typo.
The Repl doesn't remember definitions: ``` Repl> (define myid (lambda (x) x)) myid Repl> (myid 1) Error Unbound Variable: myid ``` This works: ``` Repl> (begin (define myid (lambda (x)...
Maybe runResourceT should not be used
**Changelogs** - Fixed minor typos in Chapter 4.
In the definition of `LispVal`, there is an error for the definition of `showError` for `NumArgs`: `(NumArgs int args) -> T.concat ["Error Number Arguments, expected ", T.pack $ show int,...