LightTable-Groovy
LightTable-Groovy copied to clipboard
Groovy plugin for Light Table
Enable windows users to use the plugin. Currently a shellscript is used to start the groovy client. Batch script or bypass script alltogether ?
Maybe it would be feasible to reuse the autocomple functionality from groovysh ?
``` groovy def myFunc(a, b, c) { // 2, 3, 4 (a * b)/c } def x = myFunc(2,3,4) ´´´ ```
``` groovy class Dummy { def calculate(val) { def temp = val * 2 // 4 temp - 1 // 3 } } new Dummy().calculate(2) // 3 ```
See clojure instarepl for inspiration