src/HOL/Mirabelle/ex/Ex.thy
author wenzelm
Wed, 11 Oct 2017 20:46:38 +0200
changeset 66842 7ded55dd2a55
parent 63971 da89140186e2
child 67443 3abf6a722518
permissions -rw-r--r--
tuned;

theory Ex imports Pure
begin

ML \<open>
  val rc = Isabelle_System.bash
    "cd \"$ISABELLE_HOME/src/HOL/Analysis\"; isabelle mirabelle arith Inner_Product.thy";
  if rc <> 0 then error ("Mirabelle example failed: " ^ string_of_int rc)
  else ();
\<close> \<comment> "some arbitrary small test case"

end