Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 1e007a96761035f261351a68e7601417 > files > 568

parrot-docs-3.6.0-2.fc15.noarch.rpm

# perl program by Thomas Klausner posted on Vienna-PM list
#
# Copyright (C) 2004-2006, Parrot Foundation.

use strict;
use warnings;

my $big;
my $string = "just another perl hacker";

for ( 0 .. 99999 ) {
    $big++;
    my @str = split( //, $string );
    my $f = shift(@str);
    push( @str, $f );
    $string = join( '', @str );
}

print "$big;
$string
";

# ende

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