- or download this
#!/usr/bin/perl
use strict;
use warnings;
...
( defined $count ) ?
( print "=" until ( $count ++ == 10 ) ) :
( print "Undefined count.\n" );
- or download this
( defined $count ) ?
( until ( $count ++ == 10 ) { print "=" } ) :
( print "Undefined count.\n" );
- or download this
if ( defined $count ) {
print "=" until ( $count ++ == 10 );
}
else {
print "Undefined count.\n";
}