mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
18 lines
292 B
Plaintext
18 lines
292 B
Plaintext
import fileio;
|
|
|
|
// test open
|
|
{
|
|
var file = open("scripts:/fileio.txt", "r");
|
|
|
|
// file.read(string);
|
|
|
|
// TODO:
|
|
// file.write(12, ",", 12);
|
|
// file.size();
|
|
// file.isOpened();
|
|
// file.error();
|
|
// file.position();
|
|
// file.mode();
|
|
|
|
// close(file);
|
|
} |