view bin/uniqs @ 8876:87d57c2a2071

<oerjan> slwd markdown//s/rasp.*/walnut./
author HackBot
date Fri, 29 Jul 2016 00:50:35 +0000
parents 9bf80fcf858b
children
line wrap: on
line source

#!/usr/bin/python
s=set()
try:
 while True:
  l=raw_input()
  if l not in s:
   s.add(l)
   print(l)
except EOFError:
 pass