Writing a method is like teaching karel a new word.
Naming Methods: You can name your methods whatever you want, but
you can't have spaces in the method name.
Remember that each open bracket { must match with a close bracket }
Remember that each open bracket
{ must match with a close bracket
}
Example of if statements
Don't forget the
()
at the end
Remember that each open bracket
{ must match with a close bracket
}
Example of while loops
Example of for loops
You can have multiple statements or function calls in a for loop.
Use for-loops when you want to repeat something a fixed number of times.
Use while-loops when you want to repeat something as long as a condition is true.