5 lines
134 B
Rust
5 lines
134 B
Rust
use crate::vm::value::Value;
|
|
use std::error::Error;
|
|
|
|
pub type PlatformFunction = fn(args: &[Value]) -> Result<Value, Box<dyn Error>>;
|