On Tuesday, May 31, 2016 at 3:11:00 PM UTC-7, Volker Braun wrote:
>
> PS: This would still leave room for a preparser hack for the 
> easy-to-implement paren-mod infix operator:
>
> X (mod Y)   -->    X * mod(Y)
>  
> Thoughts?
>

Sneaky. If we generalize that preparser rule and suppress the * generation, 
we can finally accept lisp syntax!

The problem with introducing a new reserved keyword is that people are 
presently free to use "mod" as a variable and with the new preparser rule 
their code would break, e.g.

mod = pi/2
sin(mod)

is now valid, but would be preparsed to

sin*mod()

which probably is invalid or at least very likely has a different result.


-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to