mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
- 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.
|