I&#39;m having trouble understanding how .racketrc works. I&#39;m trying to define the character ë to be &#39;lambda&#39; 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&#39;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>