Error
Errors:
Grader Results
Pass | Test | Message | |
---|---|---|---|
- | Test results will show here. | - |
Errors:
2 points
Write a program to have Karel build a pyramid. There should be three balls on the first row, two in the second row, and one in the third row.
Ending World
Want more? See our full documentation!
Karel's Built in Commands
Commands
|
|
|
|
|
Functions
Writing a Function
Writing a function is like teaching karel a new word.
Naming Functions: You can name your functions whatever you want, but you can't have spaces in the function name.
Remember that each open bracket { must match with a close bracket }
Conditional Statements
If Statements
Remember that each open bracket { must match with a close bracket }Example of if statements
Karel Conditions
Don't forget the()
at the end
|
|
Loops
Remember that each open bracket { must match with a close bracket }While Loops
Example of while loops
For Loops
Note: you can use both "let" and "var" in your for loops (they are two types of JavaScript variables). Use whichever you have been taught in your course.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.