diff options
Diffstat (limited to 'planetwars-matchrunner/bots/echo_bot.py')
-rw-r--r-- | planetwars-matchrunner/bots/echo_bot.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/planetwars-matchrunner/bots/echo_bot.py b/planetwars-matchrunner/bots/echo_bot.py new file mode 100644 index 0000000..328d914 --- /dev/null +++ b/planetwars-matchrunner/bots/echo_bot.py @@ -0,0 +1,5 @@ +import sys + +for line in sys.stdin: + sys.stdout.write(line) + sys.stdout.flush()
\ No newline at end of file |