programming-examples/perl/Statement/while statement to read input.pl
2019-11-15 12:59:38 +01:00

10 lines
211 B
Raku

#!/bin/perl
while(<>){
($name, $phone)=split(/:/);
unless($name eq "barbara"){
$record="$name\t$phone";
print "$record";
}
}
print "\n$name has moved from this district.\n";