forked from Mirror/wren
- Add process module with Process class. - Add "arguments" and "allArguments" methods. - Docs for same. - Support passing additional arguments to command line. - Add "--help" support to command line.
7 lines
206 B
Plaintext
7 lines
206 B
Plaintext
import "process" 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.
|