Skip to content

Instantly share code, notes, and snippets.

@justinxreese
Created December 27, 2014 16:07
Show Gist options
  • Save justinxreese/958e9ed6e8e0dbf7d06b to your computer and use it in GitHub Desktop.
Save justinxreese/958e9ed6e8e0dbf7d06b to your computer and use it in GitHub Desktop.
Constants example
module Employees
BASE_SALARY = 4000
class GarbageCollector
def self.salary
BASE_SALARY + 200
end
end
class Marketer
def self.salary
BASE_SALARY + 400
end
end
end
Employees::GarbageCollector.salary # 4200
Employees::Marketer.salary # 4400
Employees::BASE_SALARY # 4000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment