250 B
250 B
Lecture 2 (14:00)
Sequential Execution
- Code usually executed in logical order.
- One exception is calling methods from other methods ex.
public void moveHorizontal( int distance )
{
erase();
xPosition += distance;
draw();
}