Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > cd14cddf3b3ceaf1193157472227757a > files > 537

parrot-doc-1.6.0-1mdv2010.0.i586.rpm

#! perl

# Copyright (C) 2004-2006, Parrot Foundation.
# $Id: oo2.pl 37201 2009-03-08 12:07:48Z fperrad $

use strict;
use warnings;

for my $i ( 1 .. 500000 ) {
    my $o = new Foo();
}
my $o = new Foo();
print $o->[0], "\n";

package Foo;

sub new {
    my $self = ref $_[0] ? ref shift : shift;
    return bless [ 10, 20 ], $self;
}
1;

# Local Variables:
#   mode: cperl
#   cperl-indent-level: 4
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4: