Arc Forumnew | comments | leaders | submitlogin
Arc turtles all the way down
1 point by vincenz 5939 days ago | discuss
Using cpfr's change in ac.scm

    (xdef 'seval (lambda (x) (eval (ac-denil x))))
And cpfr's arc code:

    (set scheme-eval (annotate 'mac (fn body `(seval (quote ,@body)))))
We can now define vincenz's turtles

    (set turtles (annotate 'mac (fn (exp) `(scheme-eval (ac (ac-denil ,exp) '())))))
It's Arc all the way down (well... sliced with scheme like a sandwich)