Named parameters: Difference between revisions

(Added Go)
Line 1,055:
 
In the above signature:
* <code>$a</code> is a mandatory parameter that can be passedaccepted by position (<code>funkshun 15, ...</code>) or by name (<code>funkshun a => 15, ...</code>).
* <code>$b</code> is an optional parameter that can be passed by position or by name. By default, it's undefined.
* <code>$c</code> is an optional parameter that can be passed by position or by name. Its default value is <code>15</code>.