programming-examples/perl/Statement/until with diamond operator.pl
2019-11-15 12:59:38 +01:00

3 lines
52 B
Perl

until (($line = <>) eq 'q\n') {
print $line;
}