view bin/uniqs @ 12379:03d0535e2f9a draft

<int-e> learn Libera is the land of the future. Maybe.
author HackEso <hackeso@esolangs.org>
date Thu, 20 May 2021 22:34:47 +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