vault backup: 2023-09-04 15:59:40

This commit is contained in:
Louis Gallet 2023-09-04 15:59:40 +02:00
parent fc6f528b76
commit b022a5bc90
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY
2 changed files with 11 additions and 4 deletions

View File

@ -4,11 +4,11 @@
"type": "split",
"children": [
{
"id": "8f5f502f53642b40",
"id": "649ef7b24f4c8559",
"type": "tabs",
"children": [
{
"id": "cb5bc35ff4a8b486",
"id": "13c9bfe482ec2d42",
"type": "leaf",
"state": {
"type": "markdown",
@ -146,12 +146,12 @@
"command-palette:Open command palette": false
}
},
"active": "c473a791e2b34194",
"active": "13c9bfe482ec2d42",
"lastOpenFiles": [
"Algo/Séminaire/Introduction.md",
"Algo/Séminaire/Chapter 2 - Functions.md",
"Algo/Séminaire/Chapter 1 - CAML basics.md",
"Mathématiques/Séminaire/Logics/Logics.md",
"Algo/Séminaire/Introduction.md",
"Algo/Séminaire",
"Untitled.canvas",
"README.md",

View File

@ -66,3 +66,10 @@ val square_of_pred: int -> int = <fun>
# square_of_pred 3;;
_: int = 4
# let square_of_pred x = let pred x = x - 1 in pred x * pred x
val square_of_pred: int -> int = <fun>
val pred: int -> int = <fun>
# square_of_pred 3;;
_: int = 4 *same things but with another method*
```