package shexp

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

Install

Dune Dependency

Authors

Maintainers

Sources

shexp-v0.14.0.tar.gz
sha256=01fa41159385c30cc9de233fda13f359fb8ad1b01ed513dd1de8262aa64a3d35
md5=d756263aa2b95303edba19af36c0feea

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

Source file exit_status.ml

1
2
3
4
5
6
7
8
9
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.