Normally we would capture using the & syntax eg: &List.first/1 if we know exactly what to capture. How would I capture the function if the module name and function name is stored in a variable example:
module_name = List
function = :size
arity = 2
Now how would I capture the function dynamically?