Skip to content

Instantly share code, notes, and snippets.

@wilsonmar
Last active June 29, 2017 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wilsonmar/4cdac770f83bd4adde3ae4fa9e0814b7 to your computer and use it in GitHub Desktop.
Save wilsonmar/4cdac770f83bd4adde3ae4fa9e0814b7 to your computer and use it in GitHub Desktop.
Simple Hello Groovy script
// hello.groovy in https://github.com/wilsonmar/groovy-samples
class Example {
static void main(String[] args) {
/* This program is the first program
This program shows how to display hello world */
println('Hello World');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment