Sophie

Sophie

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

padre-0.980.0-2.mga4.noarch.rpm

#!/usr/bin/perl

use 5.008;
use strict;
use warnings;

$| = 1;

print "What is your name ?";
my $name = <STDIN>;
chomp $name;
print "Hello $name!\n";