diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2023-08-28 22:13:21 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2023-08-28 22:13:21 +0300 |
| commit | ae389b9480d46091bfd9b6843aebdc48aa577c16 (patch) | |
| tree | d484cbde3aa9394b8134d40bd55a5bdaaf9bdb17 /cljlib.fnl | |
| parent | 3332e86562d9381c5fcf6a6f5205240f5e9d4f39 (diff) | |
Update fennel-test, and add test runner script
Diffstat (limited to 'cljlib.fnl')
| -rw-r--r-- | cljlib.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -675,6 +675,7 @@ accepts sorting function `f`. " (eval-compiler (local lib-name (or :lazy-seq)) + (fn lazy-seq [...] "Create lazy sequence from the result provided by running the `body'. Delays the execution until the resulting sequence is consumed. @@ -1875,8 +1876,7 @@ called. Early termination is supported via `reduced`. ;;; cljlib (eval-compiler - (local lib-name - (or ... :cljlib)) + (local lib-name (or ... :cljlib)) (fn string? [x] (= :string (type x))) |