Created
September 30, 2016 15:07
-
-
Save ear1grey/cf13db5d2524bcf4fb3eee4b71650a35 to your computer and use it in GitHub Desktop.
This file contains 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
/* Prints a greeting */ | |
class Greeter { | |
public void greet(String name) { | |
System.out.println( | |
"Hello " + name | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment