src/FOLP/ex/If.thy
author wenzelm
Wed, 02 Nov 2005 14:46:51 +0100
changeset 18057 ad97e231bf8a
parent 17480 fd19f77dcf60
child 19796 d86e7b1fc472
permissions -rw-r--r--
dist_eqI: the_context();

(* $Id$ *)

theory If
imports FOLP
begin

constdefs
  if :: "[o,o,o]=>o"
  "if(P,Q,R) == P&Q | ~P&R"

ML {* use_legacy_bindings (the_context ()) *}

end