GroovyConsole

https://groovy-lang.org/groovyconsole.html

 

 

 

 

 

Run Ctrl+R
Clear Output Ctrl+W (Auto Clear Output On Run을 체크해 두면 편하다)
History Ctrl+, OR .

Larger/Smaller Font

Show Script In Output

Loop Mode, 스크립트를 반복해서 실행한다. 실행을 중지시키려면 스크립트에 수정을 가하면 된다. /뿌듯ㅋ

//while(true){
    println new Date() 
    sleep 1000 * 3 
//} 

Interrupt, 무한루프 실행시 안됨.