ketos

Crates.ioketos
lib.rsketos
version0.12.0
sourcesrc
created_at2016-02-08 21:52:55.394539
updated_at2019-12-25 02:46:22.245737
descriptionLisp dialect scripting and extension language
homepagehttps://github.com/murarth/ketos
repositoryhttps://github.com/murarth/ketos
max_upload_size
id4131
size860,054
Murarth (murarth)

documentation

https://docs.rs/ketos/

README

Ketos

Ketos is a Lisp dialect functional programming language.

The primary goal of Ketos is to serve as a scripting and extension language for programs written in the Rust programming language.

Ketos is compiled to bytecode and interpreted by pure Rust code.

API Documentation

ketos_derive Documentation

Language Documentation

Building the library

To build Ketos into your Rust project, add the following to your Cargo.toml:

[dependencies]
ketos = "0.11"

And add the following to your crate root:

extern crate ketos;

Building the REPL

Build and run tests:

cargo test

Build optimized executable:

cargo build --release

Usage

ketos can be run as an interpreter to execute Ketos code files (.ket) or run as an interactive read-eval-print loop.

License

Ketos is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Commit count: 234

cargo fmt