vault backup: 2023-09-07 14:42:16

This commit is contained in:
Louis Gallet 2023-09-07 14:42:16 +02:00
parent 64f7b0914e
commit c137d638a7
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,4 @@
{ {
"accentColor": "" "accentColor": "",
"baseFontSize": 18
} }

View File

@ -64,6 +64,12 @@ let add_times h1 m1 s1 h2 m2 s2 =
## Exercise 3.1 ## Exercise 3.1
```Ocaml ```Ocaml
let add a b =
if a > b then
a-b + a/b
else
b-a + b/a
let f a b c = let f a b c =
(if a > b && if b > c then (if a > b && if b > c then
a + b else c + a a + b else c + a