Arc Forum
new
|
comments
|
leaders
|
submit
login
2 points
by
akkartik
5394 days ago |
link
|
parent
A simpler change to vanilla arc is to change the prefix for arc variables to two underscores rather than one.
(define (ac-global-name s) (string->symbol (string-append "__" (symbol->string s))))
Surprisingly enough, the only other change required is to replace
else
in
case
expressions to
(else)
. Now you can convert ac.scm into a simple file that can be
load
'ed.