blob: 17d08ef1aff43c4e4c417787daec715c4dcdeb17 [file] [log] [blame]
class GlobalPrintlnTest extends GroovyTestCase {
void testGlobalPrintln() {
println("Hello World!")
}
void testGlobalPrint() {
print("Hello ")
println("World!")
}
}