package shexp

  1. Overview
  2. Docs
Process library and s-expression based shell

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=d19e518ace68dc86bc18e9af6b2b2ee0c62ed3341a25cf10cf464f22cb4f8b5d

doc/src/shexp.process/exit_status.ml.html

Source file exit_status.ml

1
2
3
4
5
6
7
8
9
10
open Import

type t =
  | Exited of int
  | Signaled of Signal.t

let sexp_of_t = function
  | Exited n -> Sexp.(cstr "Exited" [ int n ])
  | Signaled n -> Sexp.(cstr "Signaled" [ int n ])
;;
OCaml

Innovation. Community. Security.