7
¿Comenzar, rescatar y garantizar en Ruby?
Recientemente comencé a programar en Ruby, y estoy buscando manejo de excepciones. Me preguntaba si ensureera el equivalente de Ruby finallyen C #? Debería tener: file = File.open("myFile.txt", "w") begin file << "#{content} \n" rescue #handle the error here ensure file.close unless file.nil? end o debería hacer esto? #store the …