Ruby - Ecosystem and Best Practices
What is wrong with this Ruby class definition?
class employee
def initialize(salary)
@salary = salary
end
end
e = employee.new(5000)