vault backup: 2023-09-15 14:59:03

This commit is contained in:
Louis Gallet 2023-09-15 14:59:03 +02:00
parent 45f01665d9
commit 799201dce6
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -106,7 +106,7 @@ An accumulator is a thing that try to get our result. In CAML we trying to not u
## 4.3. Complexity
Exemple with egypt (4.10) vs multiply (4.6):
```Ocaml
# let multiplu a b =
# let multiply a b =
let (a,b) = if a > b then
(a,b) else
(b,a)