iris
iris copied to clipboard
The interpreter of ISLisp
If I run the REPL and enter `; test`, it hangs and doesn't proceed to the next prompt. I'd expect the input to be ignored (as the tokenizer yields zero...
If I run `iris` and hit `C-d`, it quits the REPL immediately. If I run `iris`, evaluate something, then hit `C-d`, it doesn't quit the REPL. Hitting `C-d` again quits...
```lisp ;; test.lisp (format (standard-output) "~A" (read)) ``` ## Current behavior ```shell $ iris test.lisp # or $iris test.lisp # ``` ## Expectation ```shell $ iris test.lisp # or $iris...