Lispeum Documentation
Lispeum is a Lisp-inspired language designed for the Astreum blockchain.
Features
- Inspired by the simplicity and elegance of Lisp.
- Currently supports the following operations:
(def numero 6)
- Define a variable.(+ 1 2)
- Add two numbers.
Supported Expression Types
- Symbol: Represents identifiers or variables.
- Integer: Represents whole numbers.
- String: Represents text enclosed in double quotes.
- List: Represents an ordered collection of elements enclosed in parentheses.
- Boolean: Represents a logical value, either
true
orfalse
. - Function: Represents a function with parameters and a body.
- Error: Represents an error with a category, message, and optional details.