From 370f063f6981b1fe9c8ad2e5ae4e5c0b5c639919 Mon Sep 17 00:00:00 2001 From: Sithira Akbo <56906001+dlsakbo@users.noreply.github.com> Date: Wed, 23 Oct 2019 19:33:07 +0530 Subject: [PATCH] Change no of repitition --- perl/for_loop/hello_world_for_loop.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }