expressive/src/function.rs

8 lines
156 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
2019-03-18 16:02:45 +00:00
}