This wiki is out of date, use the continuation of this wiki instead

Parameter

From FenixWiki

Revision as of 10:40, 23 March 2007 by FCR (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

A parameter is the value inside the definition of a function or a process that is received from the calling environment. The value passed on when calling the function or process is called an argument.

Example

process calling_proc()
begin
     my_proc( INT argument );
end

process my_proc( INT parameter )
begin
  //statements
end
Personal tools