Guest User

Untitled

a guest
Apr 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. require 'bennet'
  2.  
  3. Bennet.get "/blog" do
  4. "This is a blog"
  5. end
  6.  
  7. Bennet.get "/hi" do
  8. "Hello there"
  9. end
  10.  
  11. Bennet.get "/hi/html" do
  12. "<html><head><title>Hi</title></head><body><p style=\"color:red\">This is an HTML Hi</p></body></html>"
  13. end
  14.  
  15. run Bennet
Add Comment
Please, Sign In to add comment