Sample python fifo consumer
while True: | |
a=raw_input() | |
if not a: | |
continue | |
print a[::-1] | |
if a == "Hello 9": | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
while True: | |
a=raw_input() | |
if not a: | |
continue | |
print a[::-1] | |
if a == "Hello 9": | |
break |