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