27 releases

0.12.0 Dec 25, 2019
0.11.1 Apr 19, 2019
0.11.0 Mar 24, 2019
0.10.0 Jun 3, 2017
0.0.7 Mar 27, 2016

#708 in Development tools

Download history 45/week @ 2024-02-14 40/week @ 2024-02-21 30/week @ 2024-02-28 5/week @ 2024-03-06 12/week @ 2024-03-13 3/week @ 2024-03-20 18/week @ 2024-03-27 28/week @ 2024-04-03

62 downloads per month
Used in 2 crates

MIT/Apache

680KB
16K SLoC

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.

Dependencies

~7MB
~170K SLoC