//Change this program so that //Karel moves forward until //she encounters a wall. function main() { paintCorner('red'); move(); paintCorner('orange'); move(); paintCorner('yellow'); move(); paintCorner('green'); move(); paintCorner('blue'); move(); paintCorner('purple'); } main();