A functor is just the name and arity of a compound term. For example, the compound term atom(true) has the functor atom/1, meaning the name of the term is atom and its arity is one.
By the same logic, the term true has functor true/0, meaning the name of the term is true, and its arity is zero.
A predicate also has a functor. The head of a predicate (the part before the :- operator) determines a predicate’s functor. So if you defined the predicate:
hello_world :- print("Hello World"), nl.
That predicate would have the functor hello_world/0, the name of the predicate is hello_world and the arity is zero.
Some predicates that work for compound terms just define atomics as having themselves as a name and having arity 0. This is useful and doesn’t break anything. Try with strings or maybe floats:
functor
Combination of name and arity of a compound term. The term foo(a, b, c) is said to be a term belonging to the functor foo/3 . foo/0 is used to refer to the atomfoo.
Prolog uses “ambivalent syntax”. The same symbol can be a predicate symbol, or a function symbol of any arity (this includes constants). Such a symbol is called “atom”.