Glossary

function

A programming language construct, modeled after the mathematical concept. A function encapsulates some behavior. It is given some arguments as input, performs some processing, and returns some results. Also known as procedures, subprograms or subroutines. See also operation.