Skip to content

Instantly share code, notes, and snippets.

@erikbuild
Created February 15, 2012 19:55
Show Gist options
  • Select an option

  • Save erikbuild/1838541 to your computer and use it in GitHub Desktop.

Select an option

Save erikbuild/1838541 to your computer and use it in GitHub Desktop.
file = File.read("tuzzio.txt")
while (line = file.gets)
puts line
end
file.close
@schrockwell

Copy link
Copy Markdown

Alternatively,

File.open('ryxxui.txt').each_line do |line|
  puts line
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment