Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 6eaf3698eb17da74106417bf0b32aef8 > files > 559

padre-0.980.0-2.mga4.noarch.rpm

#!/usr/bin/perl

use 5.008;
use strict;
use warnings;

$| = 1;

my $n = 10;
print "First line\n";
print "Going to sleep $n seconds\n";
sleep $n;
print "Finished sleeping\n";