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