Last active
June 29, 2017 21:31
-
-
Save wilsonmar/4cdac770f83bd4adde3ae4fa9e0814b7 to your computer and use it in GitHub Desktop.
Simple Hello Groovy script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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