mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +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.
8 lines
224 B
C++
8 lines
224 B
C++
// Generated automatically from src/module/process.wren. Do not edit.
|
|
static const char* processModuleSource =
|
|
"class Process {\n"
|
|
" static arguments { allArguments[2..-1] }\n"
|
|
"\n"
|
|
" foreign static allArguments\n"
|
|
"}\n";
|