11 lines
88 B
Perl
11 lines
88 B
Perl
#!/usr/bin/env perl
|
|
|
|
use utf8;
|
|
use strict;
|
|
use warnings;
|
|
|
|
for( ; ; )
|
|
{
|
|
printf"e";
|
|
}
|