Bryce
Member since Oct 10, 2012
- Profile: /members/10340-bryce.htm
- Comments: 2
Recent Blog Comments By Bryce
-
Seven Languages In Seven Weeks: Ruby - Day 2
Posted on Oct 10, 2012 at 2:13 PM
My first solution for the problem #3. I'd be curious to better implementations though.... # readFile.rb filename = ARGV[0] word = ARGV[1] f = File.open(filename, 'r') f.each_line { |line| /#{word}/.match(line) ? (puts "#{f.lineno}: #{line}") : next} # From Command Line ruby readFile.rb ... read more »
-
Seven Languages In Seven Weeks: Ruby - Day 2
Posted on Oct 10, 2012 at 1:44 AM
Way dated but since I'm just now getting into this book I'd like to contribute :) My answer was close to Stephen's original... (1..16).each {|i| i % 4 == 0 ? (puts i) : (print i, ", ")}... read more »