Show GTest.groovy syntax highlighted
package net.groovy.example;
class GTest
{
static void main( args )
{
def List list = ["Rod", "Phil", "James", "Chris"]
def shorts = list.findAll { it.size() < 5 }
shorts.each { println it }
}
void foo()
{
}
}
See more files for this project here
Groovy Monkey is a Utility for Eclipse that enables you to create scripts in Groovy, Beanshell, Python or Ruby to run directly in Eclipse. This tool can be used to Eclipse API exploration, automation scripts, and rapid plugin prototyping.
Project homepage:
http://sourceforge.net/projects/groovy-monkey
Programming language(s): Groovy,Java,XML
License: other
DeliciousAPI.groovy
GTest.groovy