rum
rum copied to clipboard
Functional language, easily extensible and possible (Lua features with LISP dialect and functional) to be embarked on software Go!
``` (package main (let csv (open "file.csv")) (print csv)) ```
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...
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...
``` (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...