WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open

Done #1294

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
18 changes: 16 additions & 2 deletions app/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@ 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 and num_2==num_3
resp.write "You Win"
else
resp.write "You Lose"
end
resp.finish
end

end

end