Operating system interface for environment and command execution.
Retrieves the value of the environment variable name. Returns an empty string if not set.
Executes command via the system shell. Returns the exit status.
load std.os
let path = os.get_env("PATH")
let code = os.execute("echo hello")