diff --git a/perl/for_loop/hello_world_for_loop.pl b/perl/for_loop/hello_world_for_loop.pl index 86888b8..399e13e 100644 --- a/perl/for_loop/hello_world_for_loop.pl +++ b/perl/for_loop/hello_world_for_loop.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl # Hello World in for loop -for( $count = 0; $count < 5; $count = $count + 1 ) { +for( $count = 0; $count < 5000; $count = $count + 1 ) { print "Hello World: $count\n"; }