All Projects → rumlang → Rum

rumlang / Rum

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

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects
language
365 projects
lisp
113 projects

Rum Language - LISP dialect

Github Actions Go Report Card Documentation license

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

History

Idealized in GopherCon Brasil 2017 (reason of the language being written in Go), had the purpose of being virtual machine of CLISP (development for fun and the founder team enjoys functional programming), after seeing that there was already some parser of CLISP written in Go we had a initiative to make a language with syntax like CLISP but with some own paradigms (such as asynchronous processing using goroutine underneath, thus joining what we have best in the Go).

Why Rum?

As the language was born in Canasvieiras (Florianópolis - Brazil) neighborhood in the seaside frequented by tourists having the pirate boat as a tourist attraction, we decided to give the name of the typical beverage of pirates for the language.

Why another lisp?

Install

go install github.com/rumlang/rum

Run

./rum

or

go run rum.go

Example

(package "main"
  (import
    (str "strings")
    csv)

  ; Canonical example
  (println "Hello, World!")

  ; Create a function, run it and print the result.
  (let area
    (lambda (r) (* 3.141592653 (* r r))))
  (println (area 10.0))

  (def area(r)
    (* 3.141592653 (* r r)))
  (println (area 100.0))

  ;; use strings package with alias str
  (println (str.contains "rumlang" "rum"))
  ;; use csv package by example
  (println "csv read all:" (. (csv.new-reader (str.new-reader "1,2,3,4")) read-all))
)

Using rum as a Go package

package main

import (
  "bufio"
  "strings"

  "github.com/rumlang/rum"
)

func main() {
  const input = `
(package main
  (print 'Hello)
)
`
  s := bufio.NewScanner(strings.NewReader(input))
  vm := rum.New()
  err := vm.Run(s)
  if err != nil {
    fmt.Println(err)
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].