2023-05-04 06:19:32 -05:00
|
|
|
Use core;
|
2023-05-04 02:27:04 -05:00
|
|
|
|
|
|
|
Constant VERSION Version{
|
|
|
|
major: 1,
|
|
|
|
minor: 0,
|
|
|
|
patch: 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
Type Path = String;
|
|
|
|
|
|
|
|
Structure File {
|
|
|
|
name: String,
|
|
|
|
data: Vector<Byte>,
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface File{
|
|
|
|
function new accepts(Path) returns(None);
|
|
|
|
|
|
|
|
// Open in this iteration assumes the file exists
|
|
|
|
function open accepts(Path) returns(File);
|
|
|
|
|
|
|
|
function close accepts(File) returns(None);
|
2023-05-04 06:19:32 -05:00
|
|
|
}
|