1
1
mirror of https://github.com/tweag/nickel.git synced 2024-10-05 07:37:09 +03:00

Add typing syntax note in syntax doc

This commit is contained in:
Anthony Caccia 2022-01-18 13:38:51 +01:00
parent 7d137da4ea
commit 185f0f49de

View File

@ -194,6 +194,12 @@ true
3
```
The identifier in the `let` part can be typed (more about typing in the dedicated document):
```
> let a : Num = 6 in 6 * 7
42
```
## Functions
A function is declared using the `fun` keyword, then arguments separated by spaces, and finally an arrow `=>` to add the body of the function.
To call a function, just add the arguments after it separated with spaces.