Avelino
Avelino
```clojure (struct test (name (:type string) (:json "123 testando")) age (langs (:type array))) (let setTest (test (name "Avelino") (age 10) (langs (array("rum", "golang", "python"))))) (let setTestAvelino (test (name "Avelino") (age...
Example of how I think - we are willing to discuss the best way: ```clojure (package "main" (import http) (def home-handle(w, r) (fprintf w "home starting server!")) (http.handle-func "/" home-handle)...
**source:** ```clojure (** 2.0 1.9) ``` **Linux:** `3.732131966147229` [test break example](https://github.com/rumlang/rum/runs/1995188682?check_suite_focus=true) **macOS:** `3.7321319661472296` [test break example](https://github.com/rumlang/rum/runs/1995188693?check_suite_focus=true) Operaor **pow** `(**)` implementation: https://github.com/rumlang/rum/blob/e2e370409291abccdbe1060f89c9f57104afb907/runtime/operators.go#L85-L90 ### Observation The result is correct, but on **Linux**...
example: ``` (package "main" (import "github.com/avelino/slugify") (print (slugify.Slugify "Example slugify"))) ``` output: ``` example-slugify ``` We can create a keyword for this import, example `goimport` We were able to use...
view on @pfeodrippe fork https://github.com/pfeodrippe/rum/commit/bf29721401ab29b3dd6fd89f7289a8e0891a5663#commitcomment-27959385
Another implementation: https://github.com/jupyter/jupyter/wiki/Jupyter-kernels
production crash log: ```log play_1 | 2018/02/22 00:03:27 New session 764d5a8f-0c6c-4a16-9d0d-4f95aed88fc1 play_1 | 2018/02/22 00:03:27 App Initialize play_1 | 2018/02/22 00:03:27 AddForm home {{map[]}} play_1 | 2018/02/22 00:03:27 App goto...
``` (list 1 2 3) ;; => (1 2 3) ``` Thinking of better implementation I think it is necessary to have **list**, divide the **array** and **list**
```cl (zip (list 1 2 3) (list 4 5 6) (list 7 8 9)) ;;=> ((1 4 7) (2 5 8) (3 6 9)) (zip (list 1 2 3) (list...
list
To avoid using the interface empty we will have a function at the runtime called List