Evaluating the last expression
In the REPL, +, ++, and +++ have as values the three most recently evaluated expressions. A quick way to evaluate the previous expression, especially handy in a REPL without input history, is
#.+
It’s equivalent to (eval +).
(Thanks to Anton Kovalenko.)