i am lost
#21
If you can draw an infinite loop in a flow chart then you can do a Land Rover repair flow chart. There are no escape clauses.
# Or we can do it this way
my $wallet = 5;
my $paycheck = 1;
while ( $wallet > 0 ) {
$wallet += $paycheck;
$wallet -= $paycheck;
}
print "Work on Land Rover";
It's all the same.
# Or we can do it this way
my $wallet = 5;
my $paycheck = 1;
while ( $wallet > 0 ) {
$wallet += $paycheck;
$wallet -= $paycheck;
}
print "Work on Land Rover";
It's all the same.
#29