forked from Orchid/orchid
Added a very rudimentary file I/O system suitable for experimenting with the language further. A better one will be designed when we have sensible error management.
6 lines
157 B
Rust
6 lines
157 B
Rust
//! A rudimentary system exposing methods for Orchid to interact with the file
|
|
//! system. All paths are strings.
|
|
mod commands;
|
|
|
|
pub use commands::DirectFS;
|