mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7 lines
90 B
Ruby
7 lines
90 B
Ruby
|
|
||
|
ARGF.each_line{|line|
|
||
|
if /^\s+COUNTER\((.+)\),$/ =~ line
|
||
|
puts "\"#{$1}\","
|
||
|
end
|
||
|
}
|