Add a hint about using ref() or reftype
Dave Rolsky [Fri, 5 Feb 2010 17:13:02 +0000 (11:13 -0600)]
moose-class/exercises/t/01-classes.t

index dd11fab..0e83a2e 100644 (file)
 #
 #   Person->new( [ 'Lisa', 'Smith' ] );
 #
+# Hint: A quick and dirty way to check this is to use ref() to check if the
+# first value in @_ is an array reference (perldoc -f ref). A nicer way to do
+# this would be use to use Scalar::Util::reftype().
+#
 # Create an Employee class in lib/Employee.pm
 #
 # The Employee class is a subclass of Person