vault backup: 2023-10-20 14:24:08

This commit is contained in:
Louis Gallet 2023-10-20 14:24:09 +02:00
parent 7fbf9619f2
commit 317aabbcdc
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -263,5 +263,6 @@ let assoc k l =
| (ke, ve)::t when k = ke -> ve
| (ke, ve)::t when k < ke -> failwith "not found"
| (ke, ve)::t -> findkey k t
in findkey l
in findkey l;;
val assoc: int -> (int * 'a)list -> 'a = <fun>
```