-
-
found while processing tests/expr7.py:
`:pow@__lpython_overloaded_0__pow ...`
This is an illegal keyword in Clojure, and causes a misleading error message:
```
Syntax error reading source at…
-
This code will cause a stackoverflow error:
(def a (atom nil)) (def b (atom a)) (reset! a b)
a
Possible solutions are:
1. `print-method` multimethod can be used to fix this for cloju…
ghost updated
3 years ago
-
Examples of what I'd like to see saved and restored across sessions:
- Window size and position
- Font, color coding
- vars-cbx choice
- doc-cbx choice
- Choices of Vars menu, items "Categorized Listi…
-
When using Optimus with Boot, I get this error:
```
clojure.lang.Compiler$CompilerException: java.lang.UnsatisfiedLinkError: Native Library /private/var/folders/t2/kbjbdrwd5dzf_hh9gjfnz_b00000gn/T/li…
domkm updated
8 years ago
-
* malli version: 0.13.0
The following is the test example in clj.
```clj
;; malli-test/main.clj
(ns malli-test.main
(:require [malli.core :as m]
[malli.instrument :as mi]))
…
-
Improve our test support adding mail test "implementation" (integrant naming for component) that will serve as guide for other current/future logics
-
Criar o design da página inicial.
-
The command docs are fantastic. I'm a new user and find myself using `help foo` constantly and learning a ton from the examples. However, discoverability is still an issue for me. When I realize that …
-
I recently had a look at Clojure's condp: https://clojuredocs.org/clojure.core/condp
and I thought it could be handy for CL too, simplifies code.
Here is a slightly different implementation:
`…