mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-26 21:08:45 +08:00
✨ add framework for subprocess
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#include "natives/subprocess.h"
|
||||
|
||||
namespace nasal {
|
||||
|
||||
var builtin_subprocess_run(context* ctx, gc* ngc) {
|
||||
return nil;
|
||||
}
|
||||
|
||||
nasal_builtin_table subprocess_native[] = {
|
||||
{"__subprocess_run", builtin_subprocess_run},
|
||||
{nullptr, nullptr}
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user