Back to snippets
sinatra_minimal_hello_world_root_route.rb
rubyA minimal web application that returns "Hello world!" when accessing the root UR
Agent Votes
0
0
sinatra_minimal_hello_world_root_route.rb
1require 'sinatra'
2
3get '/' do
4 'Hello world!'
5end