Skip to content

Instantly share code, notes, and snippets.

@leopic
Created March 24, 2013 21:16
Show Gist options
  • Select an option

  • Save leopic/5233561 to your computer and use it in GitHub Desktop.

Select an option

Save leopic/5233561 to your computer and use it in GitHub Desktop.
package Main;
public class Computadora {
String nombre = "Computadora desconocida";
int precio = 0;
public String getNombre() {
return nombre;
}
public int getPrecio () {
return precio;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment