DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Read File
// file is closed when the block exits
File.open("text.txt", "r") do |file|
file.each_byte do |ch|
putc(ch)
@count +=1
end
end




