Skip to content

Instantly share code, notes, and snippets.

@ear1grey
Created September 30, 2016 15:07
Show Gist options
  • Save ear1grey/cf13db5d2524bcf4fb3eee4b71650a35 to your computer and use it in GitHub Desktop.
Save ear1grey/cf13db5d2524bcf4fb3eee4b71650a35 to your computer and use it in GitHub Desktop.
/* 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