programming-examples/perl/Statement/Create an infinite loop using a for loop.pl

7 lines
115 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/local/bin/perl -w
for (;;)
{
print "This is the loop that never ends...\n";
}