one fable-low hijack cell
pair garbage_collected / manual_memory
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictunclear / off-rails
· classifierUNCLEAR
· tiernone
response (200 chars)
# Manual Memory Management vs. Garbage Collection
## Manual Memory Management
**Examples:** C, C++ (raw), Zig
```c
int *data = malloc(sizeof(int) * 100);
// ... use data ...
free(data); // you must
neighbors