The result of a call like file.open is a FileHandle object, yet in command-line MiniScript, FileHandle is an unknown identifier. The class exists under the hood but we have no intrinsic reference to it. To reproduce, simply type:
FileHandle
at the REPL. You get an Undefined Identifier error.
(This works correctly in Mini Micro.)
The result of a call like
file.openis a FileHandle object, yet in command-line MiniScript,FileHandleis an unknown identifier. The class exists under the hood but we have no intrinsic reference to it. To reproduce, simply type:FileHandleat the REPL. You get an
Undefined Identifiererror.(This works correctly in Mini Micro.)