Skip to content

Instantly share code, notes, and snippets.

@radityopw
Created January 10, 2016 01:41
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 radityopw/17d0fd3ad701d91f6c31 to your computer and use it in GitHub Desktop.
Save radityopw/17d0fd3ad701d91f6c31 to your computer and use it in GitHub Desktop.
simple class dicoba
package dicoba;
/**
*
* @author radity
*/
public class Dicoba {
public String masukin(){
return "hello";
}
public String masukin(String a){
return "hello "+a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment