vault backup: 2023-09-15 16:27:05

This commit is contained in:
Louis Gallet 2023-09-15 16:27:05 +02:00
parent 6046e77572
commit 891f0c551b
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -372,8 +372,6 @@ let rec multiply x y =
let rec puissance x n =
if n = 0 then
1
else if n = 1 then
x
else
x*puissance x (n-1);;
```