Concept Flow - Proc composition
Define Proc A
Define Proc B
Compose Proc C = B after A
Call Proc C with input
Proc A processes input
Proc B processes Proc A output
Return final result
We define two Procs, then create a new Proc by composing them. Calling the composed Proc runs the first, then passes its output to the second.