Files
fudge2/src/ast/evaluable.rs
2025-10-20 20:22:01 +02:00

4 lines
96 B
Rust

/// A node that is evaluable to type `T`
pub trait Evaluable<T> {
fn evaluate(&self) -> T;
}