summaryrefslogtreecommitdiffstats
path: root/Bachelor/Systemprogrammierung in Perl/examples/example1b.pl
blob: e53ed1ff4230f17590e70b9b2ff47c3478d6031b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/Perl/bin/perl
use strict;
use warnings;

my $name;

print "Wie hei�en Sie? ";
$name = <STDIN>;
chomp $name;
print "Hallo $name! \n";
print "hello world\n";