print defined($count) ? ("=") x (10-$count)
: "Undefined count.\n";
####
print defined($count) ? substr("==========", $count)
: "Undefined count.\n";
####
print defined($count) ? ("=") x (10-$count)
: "Undefined count.",
"\n";
print defined($count) ? substr("==========", $count)
: "Undefined count.",
"\n";
####
print defined($count) ? ("=") x (10-$count) : "Undefined count.", "\n";
print defined($count) ? substr("==========", $count) : "Undefined count.", "\n";
####
if (! defined $count) { print "Undefined count.\n" }
else { print substr("==========", $count) }
####
print "You bought $qty item", $qty>1 ? "s" : "", " today!\n";
####
my $item = $qty > 1 ? "items"
: "item";
my $num = num_to_text($qty);
my $when = "today";
$when = "yesterday" if $purchase_date == $yesterday;
print "You bought $num $item $when!\n";