vault backup: 2023-09-07 16:16:28

This commit is contained in:
Louis Gallet 2023-09-07 16:16:28 +02:00
parent 078f102b69
commit 18104924dc
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -67,8 +67,8 @@ match expr with pattern1 -> result1 | pattern2 -> result2 | ... | patternn -> re
```Ocaml
# let f x = match x with
0 -> 18
1 -> 24
y -> y + y;;
| 1 -> 24
| y -> y + y;;
val f : int -> int = <fun>