Rename the "process" module to "os" across all source files, documentation, tests, and build configuration. Add a new Platform class to the os module with static methods `name` (returns OS string like "Windows", "Linux", "OS X", "iOS", "Unix", "POSIX", or "Unknown") and `isPosix` (returns bool indicating POSIX compliance). Update all import paths from "process" to "os" in test files and module registrations. Move process.c/h to os.c/h, rename processSetArguments to osSetArguments, and regenerate the os.wren.inc bytecode source. Add documentation pages for the os module and Platform class.
8 lines
177 B
Markdown
8 lines
177 B
Markdown
^title Module "os"
|
|
|
|
The os module exposes classes for accessing capabilities provided by the
|
|
underlying operating system.
|
|
|
|
* [Platform](platform.html)
|
|
* [Process](process.html)
|