summaryrefslogtreecommitdiff
path: root/matrix-std/src/io.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--matrix-std/src/io.rs (renamed from matrix-stdlib/src/io.rs)5
1 files changed, 2 insertions, 3 deletions
diff --git a/matrix-stdlib/src/io.rs b/matrix-std/src/io.rs
index d72248c..19ff074 100644
--- a/matrix-stdlib/src/io.rs
+++ b/matrix-std/src/io.rs
@@ -1,8 +1,7 @@
use std::{io::{self, Read, Write}, cell::RefCell, fs::OpenOptions, rc::Rc};
-
-use matrix::{value::Value, self, vm::Vm, Result, unpack_varargs, iter, unpack_args};
+use matrix_lang::prelude::*;
use matrix_macros::native_func;
-use crate::{error, VmArgs};
+use crate::{error, VmArgs, unpack_varargs, unpack_args};
#[native_func(0..)]
fn print(_: VmArgs, args: Vec<Value>) -> Result<Value> {