summaryrefslogtreecommitdiffstats
path: root/tests/langbench/hash.rb
blob: 5b30f3e84636137a7f73a42b0db17b2f0512ef6f (plain)
1
2
3
4
5
6
7
8
9
10
hash = {}
while line = gets()
        hash[line] = 1
end
   
fd = File.open("/proc/#{$$}/status")
while $_ = fd.gets
        print if $_ =~ /^Vm[RD]/
end
fd.close