mirror of
https://github.com/janet-lang/janet
synced 2024-11-29 03:19:54 +00:00
Register core/file abstract type
This commit is contained in:
parent
4713219317
commit
d70049dbb1
@ -416,4 +416,7 @@ void janet_lib_io(JanetTable *env) {
|
|||||||
janet_core_def(env, "stdin",
|
janet_core_def(env, "stdin",
|
||||||
makef(stdin, IO_READ | IO_NOT_CLOSEABLE | IO_SERIALIZABLE),
|
makef(stdin, IO_READ | IO_NOT_CLOSEABLE | IO_SERIALIZABLE),
|
||||||
JDOC("The standard input file."));
|
JDOC("The standard input file."));
|
||||||
|
|
||||||
|
janet_register_abstract_type(&cfun_io_filetype);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user