Arc Forumnew | comments | leaders | submitlogin
5 points by kens 5917 days ago | link | parent

I'd expect that "abc".1 would return #\b?


5 points by pg 5917 days ago | link

No, it would read as two separate things, a string and the number .1; symbol-syntax has lower "precedence" than Lisp read.

-----

4 points by sjs 5917 days ago | link

  arc> (= s "abc")
  "abc"
  arc> s.1
  #\b

-----