Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Done #1287

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Done #1287

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion app/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,22 @@ class Application

def call(env)
resp = Rack::Response.new
resp.write "Hello, World"
resp.write "Hello, World\n"

num_1 = Kernel.rand(1..2)
num_2 = Kernel.rand(1..2)
num_3 = Kernel.rand(1..2)

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

Expand Down