Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 19, 2019 00:36
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/df7b1005b8aa57dad12e4844e2b36221 to your computer and use it in GitHub Desktop.
Save parzibyte/df7b1005b8aa57dad12e4844e2b36221 to your computer and use it in GitHub Desktop.
public class CodificarJSON {
public static void main(String[] args) {
String[] amigos = {"Guayaba", "Snowball", "Cuco"};
Raza raza = new Raza("Caniche", "Francia");
Mascota mascota = new Mascota("Maggie", 3, amigos, raza);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment