1
0
Fork 0
forked from koniifer/ableos
ableos-framebuffer/sysdata/test-programs/vfs_test.rhai

15 lines
250 B
Plaintext
Raw Normal View History

2023-11-11 14:45:45 +00:00
import "sysdata/test-programs/hblib/std" as std;
fn main(){
std::Info("Trying to open a file.");
2023-11-20 09:13:18 +00:00
std::open("/file.hbf");
std::write();
std::read();
std::close();
2023-11-03 08:04:22 +00:00
std::Info("VFS Test done!");
2023-11-02 19:08:48 +00:00
// un();
tx();
}
main();