Skip to content

Instantly share code, notes, and snippets.

@probablycorey
Created May 11, 2011 18:48
Show Gist options
  • Save probablycorey/967056 to your computer and use it in GitHub Desktop.
Save probablycorey/967056 to your computer and use it in GitHub Desktop.
class Global
def name; "hello world"; end
end
class ListOne < Global
def name; "one"; end
def output; "#{name}"; end
end
class ListTwo < Global
def output; "#{name}"; end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment