fork download
  1. array = ["t", "e", "s", "t", "e", "_", "t", "e", "s", "t", "e"]
  2. p array
  3.  
  4. array.pop()
  5. p "Deletando:"
  6. p array
  7. puts "\n"
Success #stdin #stdout 0.02s 7420KB
stdin
Standard input is empty
stdout
["t", "e", "s", "t", "e", "_", "t", "e", "s", "t", "e"]
"Deletando:"
["t", "e", "s", "t", "e", "_", "t", "e", "s", "t"]