src/Pure/ML/ml_statistics_dummy.ML
author wenzelm
Sun, 27 Jul 2014 15:40:19 +0200
changeset 57821 f11f3d7589b1
parent 50280 0eb9b5d09f31
permissions -rw-r--r--
Added tag Isabelle2014-RC1 for changeset c0fd03d13d28

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