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

``` (package main (let csv (open "file.csv")) (print csv)) ```

enhancement
stdlib
core

enhancement
good first issue
tool
linguage design

enhancement
good first issue
tool
linguage design

ref: https://github.com/rumlang/rum/issues/60#issuecomment-350722270 `load`: load file `.rum` this file point **test1.rum** ``` (print "print test1") ``` **main.rum** ``` (package "main" (print "start") (load "test1.rum") (print "end")) ``` output: ``` start print...

stdlib
core

These are some ideas of, keywords and operators for the first beta of the language. Some of keywords we have not even defined the syntax. Please comment, suggests modifications, and...

enhancement
help wanted
core
suggestion

``` (improt "time") (print (time.Now())) ``` On example `time` is stdlib but it's not in the main repository[1], It would have an own repository (example[2]). The build process (for VM...

stdlib
core