I'm having trouble understanding how .racketrc works. I'm trying to define the character ë to be 'lambda' as follows to be globally available, through the .racketrc. <div><br></div><div><div>(define-syntax ë </div>
<div> (syntax-rules ()</div><div> ((_ args body ...)</div><div> (lambda args body ...))))</div></div><div><br></div><div>This first basic attempt of adding this definition to .racketrc does not work. The definition is not available at the prompt, or in other modules. I tried a few other things, but nothing seems to have worked. What's the best way to put in globally available syntax definitions through the .racketrc? Or, is there another way of doing this that is more in line with Racket paradigms? </div>
<div><br></div><div>Thanks,</div><div><br></div><div>A. </div>