Arc Forumnew | comments | leaders | submitlogin
7 points by fallintothis 4934 days ago | link | parent

  $ grep "(def get" arc.arc
  (def get (index) [_ index])

  arc> (ssexpand '.a)
  (get a)
  arc> (ssexpand '!b)
  (get (quote b))
  arc> (= bleh (map [obj num _] (range 1 5)))
  (#hash((num . 1)) #hash((num . 2)) #hash((num . 3)) #hash((num . 4)) #hash((num . 5)))
  arc> (map !num bleh)
  (1 2 3 4 5)
  arc> (let b 'num (map .b bleh))
  (1 2 3 4 5)


1 point by akkartik 4933 days ago | link

That explains the cryptic errors about get I've gotten on occasion. Thanks!

-----

1 point by d0m 4934 days ago | link

awesome!

-----