It is quite simple, look:
(define b +)
(b 2 2)
> 4
Now bis an alias for +. You can use the same idea to create aliases for any required procedure with any name (this is not limited to single-character names). Keep in mind that this will not work for other special forms; for example, this will result in an error:
(define my-and and)
source
share