fork(1) download
  1. import java.util.*; /* JAVA util != JAVA awt */
  2.  
  3. class Ideone
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. List<Estudante> lista = new ArrayList<>();
  8. System.out.println("OK :D");
  9. }
  10.  
  11. class Estudante {
  12. private int numero;
  13. private String nome;
  14.  
  15. public Estudante(int numero, String nome){
  16. this.numero = numero;
  17. this.nome = nome;
  18. }
  19. }
  20. }
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
OK :D