Show as_string sub in Printable role inlining example
Dave Rolsky [Thu, 3 Feb 2011 21:22:13 +0000 (15:22 -0600)]
moose-class/slides/index.html

index 25bf289..e8ee8ab 100644 (file)
@@ -1344,7 +1344,9 @@ $person-&gt;print();</code></pre>
 <pre><code>package Person;
 use Moose;
 
-<span class="highlight">with 'Printable';</span></code></pre>
+<span class="highlight">with 'Printable';</span>
+
+sub as_string { $_[0]-&gt;first_name() }</code></pre>
 </div>
 
 <div class="slide">
@@ -1355,6 +1357,8 @@ use Moose;
 
 <span class="delete">with 'Printable';</span>
 
+sub as_string { $_[0]-&gt;first_name() }
+
 <span class="highlight">has has_been_printed =&gt; ( is =&gt; 'rw'  );
 
 sub print {