From 901306e6ce791ddc163c0e24772af1e8511f1097 Mon Sep 17 00:00:00 2001 From: Jane Justiz Date: Sat, 27 Feb 2021 17:43:17 -0500 Subject: [PATCH] Done. --- app/application.rb | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/app/application.rb b/app/application.rb index e19c3284..a9e5903a 100644 --- a/app/application.rb +++ b/app/application.rb @@ -1,9 +1,23 @@ class Application - + def call(env) resp = Rack::Response.new - resp.write "Hello, World" + + num_1 = Kernel.rand(1..20) + num_2 = Kernel.rand(1..20) + num_3 = Kernel.rand(1..20) + + resp.write "#{num_1}\n" + resp.write "#{num_2}\n" + resp.write "#{num_3}\n" + + if num_1==num_2 && num_2==num_3 + resp.write "You Win" + else + resp.write "You Lose" + end + resp.finish end - -end + +end \ No newline at end of file