Arc Forumnew | comments | leaders | submitlogin
2 points by croach 6273 days ago | link | parent

No, please don't add a library function for infix operations. I don't think it adds anything to the language other than clutter, and it becomes basically a crutch for those new to lisp that will just make it harder for them to transition to the lisp way of thinking.


3 points by almkglor 6273 days ago | link

  (/ (- (sqrt (- (* b b) (* 4 a c))) b) (* 2 a))

  (nfx ((sqrt (b * b - 4 * a * c)) - b) / (2 * a))

-----