2 Jun
2013
2 Jun
'13
9:25 p.m.
What's the best way to do this for gsc? I've tried using -e but it doesn't seem to affect the compiler's reader: gsc -e "(readtable-eval-allowed?-set (current-readtable) #t)" test.scm
Nevermind! I didn't realize the readtable-eval-allowed?-set didn't mutate the readtable. This seems to work: gsc -e "(current-readtable (readtable-eval-allowed?-set (current-readtable) #t))" -exe test.scm