Reminder: We won't collect homework, we'll just discuss it. You don't even need to write the answers down if you don't want to, or answer all the questions. We just want you to think about these things and do a little research into some of the terminology we are using.
#!perl
$frogs = 10;
$cheese_cake = 0;
while ($frogs > 0) {
$frogs++;
print "Glug.\n";
print "A frog jumped into the pond. There are $frogs left.\n";
$cheese_cake += 2;
}
print "All done. There are $frogs left.\n";
print "And by the way, the value of cheese_cake is now: $cheese_cake.\n";