Arc Forumnew | comments | leaders | submitlogin
1 point by CatDancer 5428 days ago | link | parent

I've never used that feature, do you have an example handy of when auto-quasiquoting is useful?


1 point by shader 5428 days ago | link

I'm working on that. First I have to get my snippet to work.

My goal is to get

  (= a 5)
  (mz (+ 3 ,a))
to transform into

  (ac-tunnel (+ 3 5))
so that you can use arc variables easily inside of a mzscheme call. That's what the original $ does.

-----