5 lines
75 B
Perl
5 lines
75 B
Perl
|
use strict;
|
||
|
while ( $r ) {
|
||
|
printf ( "Example text \n" );
|
||
|
sleep 1;
|
||
|
}
|