Created
October 14, 2013 20:40
-
-
Save ordinaryzelig/6981821 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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