Files
G4G0-1/Semester 1/Programming 1/Week 7/Week 7 Programming 1.md
2024-01-15 20:14:10 +00:00

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();
}