src/Pure/ML-Systems/ml_pretty.ML
author huffman
Wed, 10 Mar 2010 14:57:13 -0800
changeset 35700 951974ce903e
parent 30623 9ed1122d6cd2
child 38635 f76ad0771f67
permissions -rw-r--r--
new theory Library/Nat_Bijection.thy

(*  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;