summaryrefslogtreecommitdiffstats
path: root/tests/langbench/grep.rb
blob: a13f8fef65afaadc8f308a2229f4a9db124cf2f5 (plain)
1
2
3
4
re = Regexp.compile("[^A-Za-z]fopen\\(.*\\)")
while line = gets()
	print if re =~ line
end