aboutsummaryrefslogtreecommitdiff
path: root/planetwars-matchrunner/bots
diff options
context:
space:
mode:
Diffstat (limited to 'planetwars-matchrunner/bots')
-rw-r--r--planetwars-matchrunner/bots/echo_bot.py5
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