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 #1303

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

Done #1303

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
22 changes: 18 additions & 4 deletions app/application.rb
Original file line number Diff line number Diff line change
@@ -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