2008/05/04 | 给小蕨的生日礼物
类别(有人看得懂有人看不懂) | 评论(1) | 阅读(32) | 发表于 19:09

def lc(dir,exts=[".rb",".rbw"]) 
  total = 0 
  Find.find(dir) do |f| 
    Finde.prune if f == ".metadata" 
    if exts.include?(File.extname(f)) 
      lines = File.open(f).read.count("\n") 
      puts "#{f} #{lines}" 
      total += lines 
    end 
  end 
  puts "total: #{total}" 
  return total 
end 

大概5000行~高一下半学期到现在

0

评论Comments