one fable-low hijack cell
pair garbage_collected / manual_memory
envelope code_haskell_alt
ordering AB
effort low
Haskell alternative operator — '{X} <|> {Y}' (Alternative class).
verdictunclear / off-rails
· classifierUNCLEAR
· tiernone
response (200 chars)
# Manual Memory Management vs. Garbage Collection
## Manual Memory (`malloc`/`free`, `new`/`delete`)
**You** decide when memory is allocated and released.
```c
int *data = malloc(100 * sizeof(int))
neighbors