harn-vm 0.8.8

Async bytecode virtual machine for the Harn programming language
Documentation
1
2
3
4
5
6
7
8
9
/// Embedded standard library modules.
pub fn get_stdlib_source(module: &str) -> Option<&'static str> {
    harn_stdlib::get_stdlib_source(module)
}

/// Embedded stdlib prompt assets, addressed as `std/<path>.harn.prompt`.
pub fn get_stdlib_prompt_asset(path: &str) -> Option<&'static str> {
    harn_stdlib::get_stdlib_prompt_asset(path)
}