Sinking Boat

Boat1 Function

   plot(1, 0)
   plot(3, 0)
   plot(1, 1)
   plot(3, 1)
   plot(1, 2)
   plot(3, 2)
   plot(0, 3)
   plot(1, 3)
   plot(2, 3)
   plot(3, 3)
   plot(4, 3)
   plot(1, 4)
   plot(2, 4)
   plot(3, 4)

After you develop a function - you have to CALL it for the code to actually execute.

Call = Hey Computer Go to Boat1 and do all those steps
What we Get when we call Boat #1

Last updated