doc-src/TutorialI/Misc/let_rewr.thy
author paulson
Wed, 28 Jun 2000 10:57:35 +0200
changeset 9174 6ef054f33f83
parent 8771 026f37a86ea7
child 9458 c613cd06d5cf
permissions -rw-r--r--
FORCED TO RENAME "W" DUE TO COMPOSE VARIABLE-CLASH BUG

(*<*)
theory let_rewr = Main:;
(*>*)
lemma "(let xs = [] in xs@ys@xs) = ys";
apply(simp add: Let_def).;

text{*
If, in a particular context, there is no danger of a combinatorial explosion
of nested \isa{let}s one could even add \isa{Let_def} permanently:
*}
theorems [simp] = Let_def;
(*<*)
end
(*>*)