aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test5
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test5')
-rw-r--r--tests/test510
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test5 b/tests/test5
new file mode 100644
index 0000000..74ce439
--- /dev/null
+++ b/tests/test5
@@ -0,0 +1,10 @@
+# test5
+# solver test
+
+while (1) {
+ input = gets
+ if (input == "exit") {
+ exit
+ }
+ print(solve(input))
+}