Arc Forumnew | comments | leaders | submitlogin
2 points by absz 6290 days ago | link | parent

That would be interesting, but would change the current semantics. Right now:

  arc> (= s "abc") 
  "abc"
  arc> (= l nil)
  nil
  arc> (++ s "4")
  "abc4"
  arc> (++ l '(a))
  (a)
I don't know if that's a good or a bad thing, but it's worth remembering.