dgkf / R

An experimental reimagining of R
https://dgkf.github.io/R
GNU General Public License v3.0
112 stars 6 forks source link

quote drops parenthesis #140

Open sebffischer opened 2 weeks ago

sebffischer commented 2 weeks ago

In dgkf/R we have:

> quote((x + 1))
x + 1
> 

but in R we have

> quote((x + 1))
(x + 1)
> 
dgkf commented 2 weeks ago

How interesting. Thanks - I’ll take a look.