Intro to Computer Science > Functions > Flashcards
Procedure
Collection of stmts that performs a task
Function
A collection of stmts that performs a task and RETURNS A VALUE
How to declare a function
Function functionname (argument list) as datatype Statements End function