5.1. Function calls¶
In the context of programming, a function is a named sequence of statements that performs a computation. When you define a function, you specify the name and the sequence of statements. Later, you can “call” the function by name. We have already seen one example of a function call:
The name of the function is type
. The expression in
parentheses is called the argument of the function. The
argument is a value or variable that we are passing into the function as
input to the function. The result, for the type
function,
is the type of the argument.
It is common to say that a function “takes” an argument and “returns” a result. The result is called the return value.
addTwo(23)
Before you keep reading...
Runestone Academy can only continue if we get support from individuals like you. As a student you are well aware of the high cost of textbooks. Our mission is to provide great books to you for free, but we ask that you consider a $10 donation, more if you can or less if $10 is a burden.
addTwo(23)