docs(less):add the subject of less

This commit is contained in:
root 2023-10-03 10:52:28 +01:00
parent 543f309348
commit dde0f6262e
1 changed files with 13 additions and 0 deletions

13
subjects/less/README.md Normal file
View File

@ -0,0 +1,13 @@
## less
### Instructions
Write a function `Less` that takes an integer as argument and returns the integer minus 1.
### Expected function
```js
function less(a) {
}
```