brauliobo (Bráulio Bhavamitra)
- Login: brauliobo
- Email: brauliobo@gmail.com
- Registered on: 06/09/2014
- Last sign in: 12/26/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
11/09/2014
-
01:57 AM Ruby Feature #10489 (Assigned): Add inherit method for clearer and multiple inheritance
- 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 in...