2 // Programacion concurrente - Palma Mendez, Garrido Carrera, et al
4 class ThreadHilo extends Thread
7 public ThreadHilo(String frase)
13 System.out.println(palabra);
15 static public void main(String[] args)
17 Thread a = new ThreadHilo("Pepe");
18 Thread b = new ThreadHilo("Juan");
21 System.out.println("Listo");