src/ZF/Let.ML
author wenzelm
Mon, 09 Dec 1996 16:47:11 +0100
changeset 2350 da4f8b250e1a
parent 1461 6bcb44e4d6e5
child 9907 473a6604da94
permissions -rw-r--r--
patch-scripts.bash - relocate interpreter paths of Isabelle scripts.

(*  Title:      ZF/Let
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1995  University of Cambridge

Let expressions -- borrowed from HOL
*)

open Let;

val [prem] = goalw thy
    [Let_def] "(!!x. x=t ==> P(u(x))) ==> P(let x=t in u(x))";
by (rtac (refl RS prem) 1);
qed "LetI";