CookBook/Base.thy
author Christian Urban <urbanc@in.tum.de>
Thu, 15 Jan 2009 13:42:28 +0000
changeset 73 bcbcf5c839ae
parent 64 9a6e5e0c4906
child 80 95e9c4556221
permissions -rw-r--r--
used newly exported break reference in ThyOutput for writing separate output_list function

theory Base
imports Main
uses
  "chunks.ML"
  "antiquote_setup.ML"
begin

(* to have a special tag for text enclosed in ML *)
ML {*

val _ =
  OuterSyntax.command "ML" "eval ML text within theory"
    (OuterKeyword.tag "CookBookML" OuterKeyword.thy_decl)
    (OuterParse.ML_source >> (fn (txt, pos) =>
      Toplevel.generic_theory (ML_Context.exec (fn () => ML_Context.eval true pos txt))));
*}

end