|
|
If you enter an open parenthesis, (, at the menu prompt, then that parenthesis and all characters up to and including the matching closing parenthesis are passed to Scheme to be evaluated, and the result of evaluating the expression is displayed.
> (define a 1) a > (+ a 2 3 4) 10 |