Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.
Una simple funcion en ruby para escribir en un archivo de texto.
Code:
>
#!usr/bin/ruby
#Funcion savefile()
#Coded By Doddy H
def savefile(file,text)
save = File.open(file, "a")
save.puts text+"\n"
save.close
end
savefile("test.txt","probando")
#The End ?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.