Guest User

Untitled

a guest
Feb 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. require 'rubygems'
  2. require 'sinatra'
  3.  
  4. get '/' do '<h1>Olá!</h1>' end
  5. get '/usuarios' do '<h2>Usuários</h2><p>Aparecerá uma lista aqui.</p>' end
  6. get '/usuarios/:nome' do "<p>Olá #{params[:nome]}!</p>" end
Add Comment
Please, Sign In to add comment