fixes & updates

added uniq function
task.json
doc updates
This commit is contained in:
2021-03-06 19:05:37 +01:00
parent 903c8fd49d
commit eed18e0f90
7 changed files with 66 additions and 41 deletions

23
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,23 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "ml -f debug.lsp",
"type": "shell",
"command": "ml -f debug.lsp",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ml -f tests/test.lsp",
"type": "shell",
"command": "ml -f tests/test.lsp",
"isDefault": false,
"problemMatcher": []
}
]
}