Advertisement
Guest User

Untitled

a guest
Oct 6th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.23 KB | None | 0 0
  1. require 'sinatra'
  2. get('/addition')do
  3.   @first = 3
  4.   @second = 5
  5.   @result = @first + @second
  6.   erb :addition
  7. end
  8. get('/multiplication')do
  9.   @first = 2
  10.   @second = 6
  11.   @result = @first * @second
  12.   erb :multiplication
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement