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