fork download
  1. puts "Alunos\n\n"
  2. alunos = [["Daniel: ", "Nota: 10\n\n"],["Abima: ", "Nota: 10\n\n"], ["Wilame: ", "Nota: 10\n\n"],["Felipe: ","Nota: 10\n\n"]]
  3. alunos.push(["João: ", "Nota: 8\n\n"])
  4. puts alunos
  5.  
  6. #https://pt.stackoverflow.com/q/342688/101
Success #stdin #stdout 0s 28216KB
stdin
Standard input is empty
stdout
Alunos

Daniel: 
Nota: 10

Abima: 
Nota: 10

Wilame: 
Nota: 10

Felipe: 
Nota: 10

João: 
Nota: 8