When I have a line that does no assignment or no function call, it would be nice if pype automatically understood this meant print. Example: `pype 'x = _.split("/"); x[0], _'` should be interpreted as `pype 'x = _.split("/"); print(x[0], _)'`
When I have a line that does no assignment or no function call, it would be nice if pype automatically understood this meant print.
Example:
pype 'x = _.split("/"); x[0], _'should be interpreted as
pype 'x = _.split("/"); print(x[0], _)'