Commit 6e1da9a1 authored by Dave Machado's avatar Dave Machado
Browse files

Initial skeleton of parsing text file

parent 184e4c3d
#!/usr/bin/env ruby
args = ARGV
filename = args[0]
File.foreach(filename).with_index do |line, line_num|
line_num += 1
puts "#{line_num}: #{line}"
end
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment