Script Viewer
Ruby
Example 4
Download
Save Modified
#ruby - read content from a file File.open('readme.txt', 'r') do |f1| while line = f1.gets puts line end end