process.km 233 B

12345678910
  1. export const Env: Map[String,String] :=
  2. native 'os::Env';
  3. export const Args: List[String] :=
  4. native 'os::Args';
  5. type ProcessExit protected Async[never];
  6. export function exit:
  7. &(Integer) => ProcessExit
  8. native 'exit';