aboutsummaryrefslogtreecommitdiffstats
path: root/test5
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-03-23 07:20:18 -0400
committerClyne Sullivan <tullivan99@gmail.com>2018-03-23 07:20:18 -0400
commitb2849b734f1feeb7ada96b7cdae11d6bf168ed08 (patch)
tree59bd555bd216152a85afbbf64f5fa60dbc8a25c7 /test5
parentd90a58eea6e5753d0264f26f6180b40b697f6e11 (diff)
more error detection
Diffstat (limited to 'test5')
-rw-r--r--test510
1 files changed, 10 insertions, 0 deletions
diff --git a/test5 b/test5
new file mode 100644
index 0000000..440f791
--- /dev/null
+++ b/test5
@@ -0,0 +1,10 @@
+# test5
+# solver test
+
+while (1) {
+ input = gets()
+ if (input == "exit") {
+ exit
+ }
+ print(solve(input))
+}