def load_comics(path)
comics={}
File.foreach(path) do |line|
name, url = line.split(': ')
comics[name] = url.strip
end
comics #<<< THIS LINE
end
I'm used to PHP, what does comics do? I'm a bit confused (I'm doing the tutorials on tryruby.org and it didn't explain that section).

Hash[File.readlines(path).map { |line| line.strip.split(": ") }]will do this without the need for temporary variable assignment. – d11wtq Mar 10 '12 at 12:36