src/HOL/Mirabelle/ex/Ex.thy
author wenzelm
Sat, 01 Jun 2019 11:29:59 +0200
changeset 70299 83774d669b51
parent 69043 57a76e4728ed
permissions -rw-r--r--
Added tag Isabelle2019-RC4 for changeset ad2d84c42380

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