vault backup: 2023-10-29 21:53:25

This commit is contained in:
Louis Gallet 2023-10-29 21:53:25 +01:00
parent f5522ec675
commit 493df09c4f
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY
2 changed files with 8 additions and 9 deletions

View File

@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "Algo/Courses/Chapter 6 - Lists (Exercises).md", "file": "Algo/Courses/Chapter 6 - Lists.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@ -69,8 +69,7 @@
} }
], ],
"direction": "horizontal", "direction": "horizontal",
"width": 300, "width": 300
"collapsed": true
}, },
"right": { "right": {
"id": "b83c16dd7908c658", "id": "b83c16dd7908c658",
@ -86,7 +85,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "Algo/Courses/Chapter 6 - Lists (Exercises).md", "file": "Algo/Courses/Chapter 6 - Lists.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -103,7 +102,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "Algo/Courses/Chapter 6 - Lists (Exercises).md", "file": "Algo/Courses/Chapter 6 - Lists.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -126,7 +125,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "Algo/Courses/Chapter 6 - Lists (Exercises).md" "file": "Algo/Courses/Chapter 6 - Lists.md"
} }
} }
}, },
@ -157,10 +156,10 @@
"command-palette:Open command palette": false "command-palette:Open command palette": false
} }
}, },
"active": "c473a791e2b34194", "active": "f1000ea0f0e6db20",
"lastOpenFiles": [ "lastOpenFiles": [
"Algo/Courses/Chapter 7 - High Order (exercises).md",
"Algo/Courses/Chapter 6 - Lists (Exercises).md", "Algo/Courses/Chapter 6 - Lists (Exercises).md",
"Algo/Courses/Chapter 7 - High Order (exercises).md",
"Algo/Courses/Chapter 6 - Lists.md", "Algo/Courses/Chapter 6 - Lists.md",
"Algo/Séminaire/Chapter 1 - CAML basics.md", "Algo/Séminaire/Chapter 1 - CAML basics.md",
"Algo/CM/CM du 04 octobre.md", "Algo/CM/CM du 04 octobre.md",

View File

@ -16,7 +16,7 @@ _: int list = [1, 2, 3]
> In CAML, all the element in the list have to be of the same type. > In CAML, all the element in the list have to be of the same type.
```Ocaml ```Ocaml
# let l1 = ['H', 'i'];; # let l1 = ['H'; 'i'];;
val l1 : char list = ['H'; 'i'] val l1 : char list = ['H'; 'i']
# let l2 = ['C'; 'a'; 'm'; 'l'];; # let l2 = ['C'; 'a'; 'm'; 'l'];;
val l2 : char list = ['C' ; 'a' ;'m'; 'l'] val l2 : char list = ['C' ; 'a' ;'m'; 'l']