summaryrefslogtreecommitdiffstats
path: root/tests/langbench/hash.pl
blob: 46e1b9a768a01c2128f111fb3a42718465b91b6f (plain)
1
2
3
4
5
while (<>) {
	$hash{$_} = 1;
}
open(FD, "/proc/$$/status");
while (<FD>) { print if /^Vm[RD]/; }