Files
doslang-mirror/fec/std/io.fe
T

10 lines
163 B
Plaintext

unit io;
pub struct Writer {
ctx: *void,
write_fn: fn(*void, []u8) -> !usize,
}
pub struct File {
handle: u16,
pub fn close(self: &mut Self) { }
}