rune 0.14.2

The Rune Language, an embeddable dynamic programming language for Rust.
Documentation
1
2
3
4
5
6
7
8
use crate::alloc::HashMap;
use crate::runtime::Value;

/// HIR interpreter.
#[allow(unused)]
pub(crate) struct Interpreter<'hir> {
    variables: HashMap<&'hir str, Value>,
}