We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InterpreterMode
Groovy Shell has an InterpreterMode which allows shell variables to be typed. This would make it simpler for copy-pasting Java/Groovy code into the Shell. http://groovy-lang.org/groovysh.html#GroovyShell-InterpreterMode
It would allow code like this to work
> def a = 42; > println("a is $a"); > 42
The text was updated successfully, but these errors were encountered:
mchitre
No branches or pull requests
Groovy Shell has an
InterpreterMode
which allows shell variables to be typed. This would make it simpler for copy-pasting Java/Groovy code into the Shell. http://groovy-lang.org/groovysh.html#GroovyShell-InterpreterModeIt would allow code like this to work
The text was updated successfully, but these errors were encountered: