scicloj / clojisr

Clojure speaks statistics - a bridge between Clojure to R
https://scicloj.github.io/clojisr/
Eclipse Public License 2.0
147 stars 9 forks source link

unary minus on colon #59

Closed genmeblog closed 3 years ago

genmeblog commented 4 years ago

Trying to translate

-(3:7)

This doesn't work

(r '(- (colon 3 7)))

workaround

(r '(- [(colon 3 7)]))

Unary minus should wrap next form into parantheses

genmeblog commented 3 years ago

Fixed in BETA12