Skip to content

Instantly share code, notes, and snippets.

@ordinaryzelig
Created October 14, 2013 20:40
Show Gist options
  • Save ordinaryzelig/6981821 to your computer and use it in GitHub Desktop.
Save ordinaryzelig/6981821 to your computer and use it in GitHub Desktop.
class Asdf
URL = 'http://asdf.com'
def build_url(extra_stuff)
URL << extra_stuff
end
end
10.times do |idx|
puts Asdf.new.build_url("?idx=#{idx}")
end
puts Asdf::URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment