src/Pure/ML/ml_statistics_dummy.ML
author haftmann
Fri, 09 Jan 2015 08:37:00 +0100
changeset 59324 f5f9993a168d
parent 50280 0eb9b5d09f31
permissions -rw-r--r--
prefer option for default code printing width

(*  Title:      Pure/ML/ml_statistics_dummy.ML
    Author:     Makarius

ML runtime statistics -- dummy version.
*)

signature ML_STATISTICS =
sig
  val get: unit -> Properties.T
end;

structure ML_Statistics: ML_STATISTICS =
struct

fun get () = [];

end;