In the most general is a "functional" simply a function which can accept a function as input?
So, is it natural to describe:
$f: \mathbb{N} \rightarrow \mathbb{N}$
as a function. Whereas it is more natural to describe:
$F: (\mathbb{N} \rightarrow \mathbb{N}) \rightarrow \mathbb{N} $
As a functional (although it is obviously still a function).
The context is a book on Domain Theory, where they describe:
$$GCD(h;a,b) := \begin{cases}b & \text{if } rem(a,b) = 0 \\ h(b,rem(a,b)) & \text{otherwise} \\\end{cases}$$ as a functional.