public class Desarrollador {
private String nombre = "Pedro";
private String especialidad = "React, Tailwind CSS, Python, PHP";
private String[] intereses = {"Machine Learning", "Análisis de Datos", "NLP", "IA", "TypeScript"};
public void mostrarPerfil() {
System.out.println("🚀 " + nombre + " - Especialista en " + especialidad);
System.out.println("📊 Intereses: " + String.join(", ", intereses));
}
public static void main(String[] args) {
Desarrollador yo = new Desarrollador();
yo.mostrarPerfil();
}
}PetusoTwo/PetusoTwo
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|