Once the server is started, you're free to make any changes to your application and they'll be changed in any future requests as soon as you make them. So, for example, you could add this method and it will show up immediately if you visit the corresponding URL.
get '/goodbye' do
"Goodbye!"
end

