1 2 3 4 5 6 7
use crate::multistackvm::VM; pub mod internal; pub fn init_stdlib(vm: &mut VM) { internal::init_stdlib(vm); }