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');

}

}

Related questions

0 votes
asked Nov 12, 2019 in DevOps by Robindeniel
0 votes
asked Nov 12, 2019 in DevOps by Robindeniel
...