view bin/uniqs @ 12317:dff5f7e20cdf draft

<int-e> complain fungot\'s a big meanie!
author HackEso <hackeso@esolangs.org>
date Sat, 22 Feb 2020 16:26:57 +0000
parents c989a1669243
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