7 lines
115 B
Perl
7 lines
115 B
Perl
#!/usr/local/bin/perl -w
|
|
|
|
for (;;)
|
|
{
|
|
print "This is the loop that never ends...\n";
|
|
}
|