mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
- Rename the "process" module to "os". - Add Platform to it. - Static "name" method. - Static "isPosix" method. - Docs and tests!
7 lines
201 B
Plaintext
7 lines
201 B
Plaintext
import "os" for Process
|
|
|
|
// No additional arguments are passed to the test.
|
|
System.print(Process.arguments) // expect: []
|
|
|
|
// TODO: Test passing additional args once we have an API to spawn a process.
|