Find the errors in the following
1.)
| # Building Ruby Familiarity | |
| # In this exercise you will take a first look at some common commands in Ruby | |
| # The idea here is to build familiary with Ruby syntax | |
| # This will likely be the first time you've seen some of these commands | |
| # Just type them in and see the displayed output | |
| # Steps: | |
| # 1. Open up a new terminal window | |
| # 2. Launch irb |
| # The ideal range of your motor cycle speed 20 - 55. Over 55 is SCAREE! | |
| # Check if your moto_speed is within that range using boolean (&&, ||) | |
| # operators and comparison operators (== =< >= !=) | |
| # if your moto_speed variable is in the right range print out a good | |
| # message, aka "Wheee!" Otherwise print out an appropriate response. | |
| # Your code goes below: | |
| if moto_speed >=20 && moto_speed <=55 |