Arc Forumnew | comments | leaders | submitlogin
2 points by evanrmurphy 5415 days ago | link | parent

> But there are many instances it has been used on single symbols like !id. How do I interpret that?

a!b and (!b a) are equivalent:

  arc> (= a (table))
  #hash()
  arc>(= a!b 42)
  42
  arc> a!b
  42
  arc> (!b a)
  42
  arc> (is a!b (!b a))
  t
Hope this helps.


2 points by rick_2047 5415 days ago | link

Ya I learned that, but that still doesn't solve the problem I have. Please see the edit.

-----