Skip to main content
Version: Nightly

process

Implements os methods for dealing with processes.

Example:

from std.os import Process
from std.collections import List
_ = Process.run("echo", ["== TEST_ECHO"])

Structs

  • Pipe: Create a pipe for interprocess communication.
  • Process: Create and manage child processes from file executables.
  • ProcessStatus: Represents the termination status of a process.