void
- an empty variable
void
is used by functions which doesn't want to return anything
Function the_func
{
// everything that should be done...
return
void;
}