deimos-lang/dvm-lib/src/platform_function.rs
2026-03-04 12:13:05 -06:00

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>>;