src/HOLCF/ex/Dagstuhl.thy
author wenzelm
Fri, 25 Nov 2005 21:14:34 +0100
changeset 18260 5597cfcecd49
parent 17291 94f6113fe9ed
child 19742 86f21beabafc
permissions -rw-r--r--
tuned induct proofs;

(* $Id$ *)

theory Dagstuhl
imports Stream
begin

consts
  y  :: "'a"

constdefs
  YS :: "'a stream"
  "YS == fix$(LAM x. y && x)"
  YYS :: "'a stream"
  "YYS == fix$(LAM z. y && y && z)"

ML {* use_legacy_bindings (the_context ()) *}

end