tulisp 0.26.2

An embeddable lisp interpreter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod arithmetic_operations;
mod comparison_of_numbers;
mod math;
mod rounding_operations;

use crate::TulispContext;

pub(crate) fn add(ctx: &mut TulispContext) {
    arithmetic_operations::add(ctx);
    comparison_of_numbers::add(ctx);
    math::add(ctx);
    rounding_operations::add(ctx);
}