Concept Flow - Function arguments ($1, $2 inside function)
Define function
Call function with args
Inside function: $1, $2 hold args
Use $1, $2 in commands
Function ends, return to caller
The function is defined, then called with arguments. Inside, $1 and $2 hold the first and second arguments, used in commands.