Launching Groovy Interactive Console
IntelliJ IDEA lets you launch an interactive Groovy console in any project. You can use the console as a temporary file to write and evaluate your code. If dependencies in your project contain a Groovy library then the specified Groovy library is used to launch the Groovy console. If the dependencies do not contain a Groovy library then the bundled Groovy library of the Groovy version 2.3.9 will be used.
In this section:
To launch Groovy console
To use Groovy interactive console
- Type code in the console after the prompt character, or just paste from a different file.
Note that coding assistance is available, as you type (code completion and error highlighting):
- Click
, or press Ctrl+Enter to execute the entered code.
- View the results in the Run Tool Window for Groovy Console.
- Use up and down arrow keys to navigate through the results' history. Depth of the history is defined by the Console commands history size in the Editor settings.
See Also
```
Reference:
Concepts:
Last modified: 21 March 2017