1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

Allow parameters alias

This commit is contained in:
Étienne Fildadut 2021-04-08 18:19:43 +02:00
parent 25ded7a3c8
commit 0df120eeaf
2 changed files with 25 additions and 2 deletions

View file

@ -168,7 +168,7 @@ There's different types of lines, depending on their first character(s) (after i
The function body is not executed when the line is reached; it must be explicitely called in an expression. See [expressions](#function-calls) to see the different ways of calling a function.
A parameter list can be optionally given after the identifier. It is enclosed with paranthesis and contain a comma-separated list of identifiers:
A parameter list can be optionally given after the identifier. Parameter names are identifiers, with eventually an alias. It is enclosed with paranthesis and contain a comma-separated list of identifiers:
```
$ f(a, b, c)