src/HOLCF/ex/Dagstuhl.thy
author wenzelm
Tue, 06 Sep 2005 19:28:58 +0200
changeset 17291 94f6113fe9ed
parent 10835 f4745d77e620
child 19742 86f21beabafc
permissions -rw-r--r--
converted to Isar theory format;

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