src/FOLP/ex/If.thy
author wenzelm
Tue, 06 Jun 2006 20:42:25 +0200
changeset 19796 d86e7b1fc472
parent 17480 fd19f77dcf60
child 25991 31b38a39e589
permissions -rw-r--r--
quoted "if";

(* $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