lecture 5 - functions as first class values

## Pattern Matching Examples

### Write a Function to Sort Three Numbers
- **Using Tuple or List:** Decide on representations (tuple vs. list) for the function inputs.

---

## Sorting Function Implementation
### Initial Structure
- **Function Declaration:** `fun f (a, b, c) =`

---

### First Comparison
- **If Statement Structure:**
1. `if a
robot