Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 21, 2021 17:27
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 parzibyte/944a1fab62aea7c687713c477d4f67b6 to your computer and use it in GitHub Desktop.
Save parzibyte/944a1fab62aea7c687713c477d4f67b6 to your computer and use it in GitHub Desktop.
public static Persona obtenerMasValores() {
String nombre = "Luis";
String apellido = "Cabrera";
int edad = 23;
return new Persona(nombre, apellido, edad);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment