It's a mistake to ignore the customer
Posted Dec 6, 2012 22:08 UTC (Thu) by
dakas (guest, #88146)
In reply to:
It's a mistake to ignore the customer by neilbrown
Parent article:
GNU Guile 2.0.7 released
I really do not want to try to write (let along read)
if a + 2 < b*3+1 and c & 4 == 4
in anything but precedence-aware infix notation.
Thanks for proving how problematic infix can be. That example does not look like you are aware that
== has higher precedence than
&. So you are arguing for something beyond your capabilities. How would it look in Scheme as presumably
intended?
(if (and (< (+ a 2)
(+ (* b 3) 1))
(= (logand c 4) 4))
...)
(
Log in to post comments)