summaryrefslogtreecommitdiff
path: root/benchmark/app_answer.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_answer.yml')
-rw-r--r--benchmark/app_answer.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/benchmark/app_answer.yml b/benchmark/app_answer.yml
new file mode 100644
index 0000000000..ad6bf3be16
--- /dev/null
+++ b/benchmark/app_answer.yml
@@ -0,0 +1,18 @@
+benchmark:
+ app_answer: |
+ def ack(m, n)
+ if m == 0 then
+ n + 1
+ elsif n == 0 then
+ ack(m - 1, 1)
+ else
+ ack(m - 1, ack(m, n - 1))
+ end
+ end
+
+ def the_answer_to_life_the_universe_and_everything
+ (ack(3,7).to_s.split(//).inject(0){|s,x| s+x.to_i}.to_s + "2" ).to_i
+ end
+
+ answer = the_answer_to_life_the_universe_and_everything
+loop_count: 1