rum icon indicating copy to clipboard operation
rum copied to clipboard

Functional language, easily extensible and possible (Lua features with LISP dialect and functional) to be embarked on software Go!

Results 56 rum issues
Sort by recently updated
recently updated
newest added

```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...

enhancement
pkg runtime
core

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)...

stdlib

**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**...

bug
pkg runtime/operators

To make it simpler to add new features and receive more contributions my suggestion is to rewrite the parser / lex as in this example I wrote some time ago....

enhancement
core

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...

stdlib
core

view on @pfeodrippe fork https://github.com/pfeodrippe/rum/commit/bf29721401ab29b3dd6fd89f7289a8e0891a5663#commitcomment-27959385

enhancement
core

Another implementation: https://github.com/jupyter/jupyter/wiki/Jupyter-kernels

enhancement
tool

Let's try to watch https://www.youtube.com/watch?v=OyfBQmvr2Hc so we can have a better grasp of lisp and how we can build the core of the language with the minimum of the host...

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...

bug
playground

``` (list 1 2 3) ;; => (1 2 3) ``` Thinking of better implementation I think it is necessary to have **list**, divide the **array** and **list**

enhancement
pkg runtime
core