ravikumar10 / genyris

Automatically exported from code.google.com/p/genyris
Other
0 stars 0 forks source link

Syntax x = y!left #5

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
> x = y!left
*** Error - 'missing right paren - found: plingToken'

What is the expected output? What do you see instead?

   The parser ought to accept this.

The workaround is
x = (y.left)

Maybe remove the assignment with '' feature.

Original issue reported on code.google.com by birchb1...@gmail.com on 8 Dec 2010 at 3:34

GoogleCodeExporter commented 9 years ago
Assignment by '=' has been removed. so the above is now 
  setq x y!left
which works.

Original comment by birchb1...@gmail.com on 8 Feb 2011 at 7:24