diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-10-30 22:06:00 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-10-30 22:06:00 +0300 |
| commit | 7f006094a4a82cc267e687d040c15b59b149415c (patch) | |
| tree | 3d9b9a2ae62605d347e48b77370b4d421cd48405 /core.fnl | |
| parent | fe9c621140eedabecee11d6ff29f7e63fa747e15 (diff) | |
fix(core): add docstrings and improve tests
Also add editorconfig script
Diffstat (limited to 'core.fnl')
| -rw-r--r-- | core.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -380,8 +380,8 @@ oppisite truth value." (when-some [tbl (seq tbl)] (reduce -consj [] tbl))) -(fn& core.inc [x] (+ x 1)) -(fn& core.dec [x] (- x 1)) +(fn* core.inc "Increase number by one" [x] (+ x 1)) +(fn* core.dec "Decrease number by one" [x] (- x 1)) (fn* core.assoc "Associate key `k' with value `v' in `tbl'." |