Files
G4G0-1/Semester 1/Programming 1/Week 7/Week 7 Programming 1.md
2024-01-16 13:48:46 +00:00

17 lines
251 B
Markdown

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