tweak comments in examples
[coq-hetmet.git] / examples / ImmutableHeap.hs
index 56ff12c..717f84b 100644 (file)
@@ -4,16 +4,10 @@ where
 import IsomorphismForCodeTypes
 import Prelude hiding ( id, (.) )
 
-
 class GuestLanguageHeap c where
   alloc  :: <[ (Integer,Integer) ->  Integer      ]>@c
   lookup :: <[ Integer       -> (Integer,Integer) ]>@c
 
---
--- Here's nice example of Sheard's observation that it's often easier
--- to write two-stage programs by applying "back" to some function rather than
--- writing the final result directly
---
 onetwocycle = back onetwocycle'
  where
   onetwocycle' xy = <[ let (x,y) = ~~xy