vault backup: 2023-09-12 21:33:05

This commit is contained in:
2023-09-12 21:33:05 +02:00
parent 62d0aa1d7b
commit fe5c5cedad
2 changed files with 9 additions and 21 deletions

View File

@ -288,4 +288,5 @@ let rec quo a b =
else if b = 1 then
a
else
1 + quo (a-b) b ;;
1 + quo (a-b) b ;;
```