#!usr/bin/ruby#Funcion savefile()#Coded By Doddy H def savefile(file,text) save = File.open(file, "a") save.puts text+"\n" save.closeend savefile("test.txt","probando") #The End ?