src/HOL/ex/svc_test.thy
author wenzelm
Thu, 15 Sep 2005 17:17:04 +0200
changeset 17416 5093a587da16
parent 17388 495c799df31d
child 20807 bd3b60f9a343
permissions -rw-r--r--
fixed type;


(* $Id$ *)

header {* Demonstrating the interface SVC *}

theory svc_test
imports SVC_Oracle
begin

syntax
  "<->" :: "[bool, bool] => bool"    (infixr 25)

translations
  "x <-> y" => "x = y"

end