Hello, I noticed that some snippets are not printing the results as I expected. From this snippet: #+begin_src lisp :results value (values "Hello") #+end_src The results are: #+RESULTS: : Hello But it should be: #+RESULTS: : "Hello" I don’t know if this is the intended behaviour, but I think it should print the same SLIME or SLY does. Another snippet that I think is not working as expected is the following one: #+begin_src lisp :results value (values "Hey" 3) #+end_src The results are: #+RESULTS: : Hey But it should print both values as SLIME or SLY does: #+RESULTS: : "Hey" : 3 Thanks for making org. Héctor.