Content deleted Content added
Line 69:
===Perl===
Here is an equivalent example in [[Perl]]:
<source lang="perl">
# without reflection
my $foo = Foo->new();
Line 79:
my $object = $class->new();
$object->$method();
</source>
===Ruby===
|