0 votes
in DevOps by

How To Write HelloWorld Program In Groovy

1 Answer

0 votes
by

The following is a basic Hello World program written in Groovy:

class Test {

static void main(String[] args) {

println('Hello World');

}

}

...