update meta data

This commit is contained in:
Ingy döt Net 2013-04-11 12:07:39 -07:00
parent f3a896c724
commit 90e15ed6ce
3307 changed files with 1674 additions and 7 deletions

View file

@ -0,0 +1,15 @@
The task is to demonstrate the different syntax and semantics provided for calling a function. This may include:
* Calling a function that requires no arguments
* Calling a function with a fixed number of arguments
* Calling a function with [[Optional parameters|optional arguments]]
* Calling a function with a [[Variadic function|variable number of arguments]]
* Calling a function with [[Named parameters|named arguments]]
* Using a function in statement context
* Using a function in [[First-class functions|first-class context]] within an expression
* Obtaining the return value of a function
* Distinguishing built-in functions and user-defined functions
* Distinguishing subroutines and functions
* Stating whether arguments are [[:Category:Parameter passing|passed]] by value or by reference
* Is partial application possible and how
This task is ''not'' about [[Function definition|defining functions]].