Skip to content

Instantly share code, notes, and snippets.

Created August 25, 2009 15:53
Show Gist options
  • Select an option

  • Save anonymous/174777 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/174777 to your computer and use it in GitHub Desktop.
require 'sinatra'
module Sinatra
module Foo
def foo
@bar = 'Bye'
end
end
register Foo
end
get '/hi' do
@bar = 'Hello'
foo
@bar
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment