wlambda 0.8.1

WLambda is an embeddable scripting language for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod xml;
pub mod csv;
mod net;
mod process;
mod http;
mod mqtt;
use super::compiler::*;

pub fn add_to_symtable(st: &mut SymbolTable) {
    net::add_to_symtable(st);
    xml::add_to_symtable(st);
    process::add_to_symtable(st);
    http::add_to_symtable(st);
    mqtt::add_to_symtable(st);
}