# perl program by Thomas Klausner posted on Vienna-PM list # # Copyright (C) 2004-2006, The Perl Foundation. # $Id: vpm.pl 21228 2007-09-12 19:23:12Z paultcochrane $ 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: