brintos

brintos / llvm-project-archived public Read only

0
0
Text · 120 B · 37af333 Raw
9 lines · python
1import sys2 3input = open(sys.argv[1], "r")4for line in input:5  if "!interesting" in line:6    sys.exit(0)7 8sys.exit(1)9