Top "Pass-by-name" questions

What is "pass-by-name" and how does it work exactly?

I've checked Wikipedia and googled but I still can't wrap my mind around how pass-by-name works in ALGOL 60.

parameter-passing pass-by-name language-history algol
Python: Passing parameters by name along with kwargs

In python we can do this: def myFun1(one = '1', two = '2'): ... Then we can call the function …

python function arguments keyword-argument pass-by-name
Call by reference, value, and name

I'm trying to understand the conceptual difference between call by reference, value, and name. So I have the following pseudocode: …

pass-by-reference pass-by-value pass-by-name