This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang pie | |
| (claim > | |
| (-> Nat Nat Nat)) | |
| (define > | |
| (lambda (n) | |
| (rec-Nat n | |
| (the (-> Nat Nat) (lambda (m) 0)) | |
| (lambda (n-1 n-1>) | |
| (lambda (m) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Updated for GHC 7.10 | |
| {--------------------------------------------------------------------- | |
| A HASKELL LIBRARY OF MONADIC PARSER COMBINATORS | |
| 17th April 1997 | |
| Graham Hutton Erik Meijer | |
| University of Nottingham University of Utrecht |