What If, Else

Life is full of tough decisions. If a banana is nice and yellow you better grab it quick, but what if it is green or frozen? Or both?? Meet your new goat friend in the land of snowy mountains to learn about If & Else.

If-Else is a very important part of coding. It allows your program to perform different actions in different situations.

For example, the following code makes the goat grab the banana if it’s green, or else let the monkey grab it:

if b.green()

goat.goto b

else

monkey.goto b

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.