src/Pure/ML-Systems/ml_pretty.ML
author wenzelm
Mon, 26 Oct 2009 11:30:08 +0100
changeset 33178 70522979c7be
parent 30623 9ed1122d6cd2
child 38635 f76ad0771f67
permissions -rw-r--r--
more precise dependencies, notably for HOL-Multivariate_Analysis;

(*  Title:      Pure/ML-Systems/ml_pretty.ML
    Author:     Makarius

Raw datatype for ML pretty printing.
*)

structure ML_Pretty =
struct

datatype pretty =
  Block of (string * string) * pretty list * int |
  String of string * int |
  Break of bool * int;

end;