I just discovered a really magical bug, that may not be significant enough to care about.
If you open your node repl and run:
> console.log)("oh hai"
It will happily greet you without any syntax errors.
I found the issue is
here<https://github.com/joyent/node/blob/master/lib/repl.js#L249>,
where it wraps your command in parens. So it really runs (console.log)("oh
hai").
Thoughts? Worth caring about?
