Skip to content

Instantly share code, notes, and snippets.

@masanobuimai
Created April 29, 2009 14:22
Show Gist options
  • Save masanobuimai/103809 to your computer and use it in GitHub Desktop.
Save masanobuimai/103809 to your computer and use it in GitHub Desktop.
package example;
public class HelloWorld {
public String greet() { return greet("English"); }
public String greet(String lang) {
String msg = "???";
if (lang.equals("English")) msg = "Hello";
if (lang.equals("French")) msg = "Bonjour";
if (lang.equals("German")) msg = "Hallo";
return msg;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment