src/HOL/Mirabelle/ex/Ex.thy
author wenzelm
Sat, 20 Feb 2021 13:42:37 +0100
changeset 73255 7e2a9a8c2b85
parent 69043 57a76e4728ed
permissions -rw-r--r--
provide naproche-755224402e36;

theory Ex imports Pure
begin

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

end