src/FOLP/ex/If.thy
author wenzelm
Sun, 18 Sep 2005 14:25:48 +0200
changeset 17480 fd19f77dcf60
parent 0 a5a9c433f639
child 19796 d86e7b1fc472
permissions -rw-r--r--
converted to Isar theory format;

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