1
0
Fork 0
forked from AbleOS/ableos
ableos-idl/sysdata/test-programs/vfs_test.rhai
2023-11-20 03:13:18 -06:00

15 lines
250 B
Plaintext

import "sysdata/test-programs/hblib/std" as std;
fn main(){
std::Info("Trying to open a file.");
std::open("/file.hbf");
std::write();
std::read();
std::close();
std::Info("VFS Test done!");
// un();
tx();
}
main();