//Change this program so that //Karel moves forward until //she encounters a wall. function main() { moveToWall(); } function moveToWall(){ while(frontIsClear()) { // you fill this in } }