Actions
Feature #10489
openAdd inherit method for clearer and multiple inheritance
Feature #10489:
Add inherit method for clearer and multiple inheritance
Description
A new and more intuitive syntax:
class B
end
class A
inherit B
end
Instead of (but keeping this for backwards compatibility):
class B
end
class A < B
end
Besides, this allows multiple inheritance. Also, inherit could be implemented with just extend plus include?
Actions