Rosetta Code/Find bare lang tags: Difference between revisions

m
→‎{{header|Ruby}}: Hash.new takes 2 params, not three
m (→‎{{header|Ruby}}: Hash.new takes 2 params, not three)
Line 392:
part_uri = "http://rosettacode.org/wiki?action=raw&title="
Report = Struct.new(:count, :tasks)
result = Hash.new{|h,k,v| h[k] = Report.new(0, [])}
 
tasks.each do |task|
Line 425:
1 in PHP (["Greatest_subsequential_sum"])
</pre>
 
=={{header|Tcl}}==
For all the extra credit (note, takes a substantial amount of time due to number of HTTP requests):
1,149

edits