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/std_io.ml.html

Source file std_io.ml

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

type t =
  | Stdin
  | Stdout
  | Stderr

let sexp_of_t t =
  Sexp.Atom (match t with
    | Stdin  -> "stdin"
    | Stdout -> "stdout"
    | Stderr -> "stderr")
OCaml

Innovation. Community. Security.