summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--perl.html.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl.html.markdown b/perl.html.markdown
index d919e00e..61e8cd0e 100644
--- a/perl.html.markdown
+++ b/perl.html.markdown
@@ -262,6 +262,7 @@ sub increment {
# Methods can be called on a class or object instance with the arrow operator.
+use MyCounter;
my $counter = MyCounter->new;
print $counter->count, "\n"; # 0
$counter->increment;