How should lambda x: x * 2 be interpreted?
lambda x: x * 2
A loop that doubles forever
A multi-statement function body requiring return
return
A class named x
x
A function taking x and implicitly returning the value of the single expression x * 2
x * 2