Sigh, I like the joke, but it's not really a useful thing to do
<li>Human <em>@ISA</em> Animal</li>
<li>Human <em>does</em> Toolmaker (as <em>does</em> Chimpanzee)</li>
<li>Car <em>@ISA</em> Vehicle</li>
- <li>Car <em>does</em> HasEngine</li>
+ <li>Car <em>does</em> Destroyable</li>
</ul>
</div>
</div>
<div class="slide">
- <h1>What if I Want to Share?</h1>
-
- <pre><code>package Person;
-use Moose;
-
-my $highlander_bank =
- Bank->new(
- name => 'Clan MacLeod Trust' );
-
-has bank => (
- is => 'rw',
- default => sub { $highlander_bank },
-);</code></pre>
-</div>
-
-<div class="slide">
<h1>Builder</h1>
<ul>