expressive/src/function.rs

7 lines
155 B
Rust
Raw Normal View History

2019-03-15 18:26:25 +00:00
use error::Error;
use value::Value;
pub struct Function {
parameter_amount: usize,
function: fn() -> Result<Value, Error>, // TODO continue type
}