On this page:
#%app
Version: 4.1

1.3 Function Calls

(id expr expr ...)

Calls a function. The id must refer to a defined function, and the exprs are evaluated from left to right to produce the values that are passed as arguments to the function. The result of the function call is the result of evaluating the function’s body with every instance of an argument name replaced by the value passed for that argument. The number of argument exprs must be the same as the number of arguments expected by the function.

(#%app id expr expr ...)

A function call can be written with #%app, though it’s practically never written that way.