diff --git a/app.rb b/app.rb index 3f0f215..045ac1c 100644 --- a/app.rb +++ b/app.rb @@ -2,9 +2,11 @@ set :bind, '0.0.0.0' set :port, 3000 - +set :count, 0 # Your code here! get '/' do # Replace the contents of this method - "Hello world!" + settings.count += 1 + "Count: #{settings.count}" + end