vault backup: 2023-09-05 21:25:46

This commit is contained in:
Louis Gallet 2023-09-05 21:25:46 +02:00
parent 7b0d47f12b
commit 6a133cd288
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -75,6 +75,14 @@ let f a b c =
### Exercise 3.2 ### Exercise 3.2
```OCaml ```OCaml
if a && b then (*logical and*)
if a == b then
true true
else false else false
(*logical or*)
if a == b then
true
else if a && if !b
```