view bin/uniqs @ 12051:0d78afb61c51 draft

<fizzie> sled /hackenv/bin/paste//s|url tmp|url $HACKENV/tmp|
author HackEso <hackeso@esolangs.org>
date Sat, 16 Nov 2019 21:32:12 +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