[−][src]Module rune_modules::process
The native process module for the Rune Language.
Usage
Add the following to your Cargo.toml:
runestick = "0.3"
runestick-modules = {version = "0.3", features = ["http", "json"]}
Install it into your context:
let mut context = runestick::Context::with_default_packages()?; context.install(&rune_modules::process::module()?)?;
Use it in Rune:
ⓘThis example is not tested
use process::Command; fn main() { let command = Command::new("ls"); command.run().await; }
Functions
| module | Construct the http library. |