Arc Forumnew | comments | leaders | submitlogin
PG's syntax patches pushed to git
8 points by CatDancer 5458 days ago | 2 comments
For those of us using git, here are pg's recent syntax patches pushed to git:

http://github.com/CatDancer/arc/tree/arc2.chained-bang-and-dot0 http://github.com/CatDancer/arc/tree/arc2.nested-setter-fix0



2 points by conanite 5458 days ago | link

Just curious, should a tailing . or ! mean something or be considered an error? I get

  arc> (ssexpand 'a.b.c.)
  (((a b) c) #<eof>)
  arc> (ssexpand 'a.b.c!)
  (((a b) c) (quote #<eof>))

-----

3 points by CatDancer 5457 days ago | link

I don't know, but the ac.scm source does mention "no error-checking!" :-)

-----