vault backup: 2023-09-05 22:20:03

This commit is contained in:
2023-09-05 22:20:03 +02:00
parent 3b44f8c8fd
commit d2de16708f
3 changed files with 5 additions and 6 deletions

View File

@ -71,7 +71,7 @@ when there is the keyword ``len``and ``in`` that create a local definition. A lo
### Multiple definitions
```Ocaml
# let r = 1. and pi : 3.14 in 2 *. pi *. r;; (*local version*)
# let r = 1. and pi = 3.14 in 2 *. pi *. r;; (*local version*)
- : float = 6.28
# let x = 1.2 and y = "Hello";;