package shexp

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

Install

Dune Dependency

Authors

Maintainers

Sources

shexp-v0.15.0.tar.gz
sha256=4af322366779ce139a625c5d815d76d82a2ae7d9bc2efec33b5c3b824e04e6d3

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.