Skip to content

Instantly share code, notes, and snippets.

@diegozr1
Created July 30, 2015 20:53
Show Gist options
  • Save diegozr1/559f529350f0e5aded06 to your computer and use it in GitHub Desktop.
Save diegozr1/559f529350f0e5aded06 to your computer and use it in GitHub Desktop.
A simple application of OOP with Java
public class Saludo{
private String name;
public Saludo(){
this.name = "Default";
}
public Saludo(String name){
this.name = name;
}
public String toString(){
return "Saludos a la persona llamada "+this.name;
}
public static void main(String[] args) {
Saludo s = new Saludo();
System.out.println(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment