From 7baf211d44af11e264b9f91c26547ac422f34f0b Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sat, 14 Jul 2007 05:08:23 +0000 Subject: [PATCH] new promises svn: r6912 original commit: eef7c4012776f0a0fcd4104d282000660b04bfe4 --- collects/lazy/mz-without-promises.ss | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 collects/lazy/mz-without-promises.ss diff --git a/collects/lazy/mz-without-promises.ss b/collects/lazy/mz-without-promises.ss new file mode 100644 index 0000000..bdb0ea1 --- /dev/null +++ b/collects/lazy/mz-without-promises.ss @@ -0,0 +1,3 @@ +;; A tiny language to build our promises with no built-in interference +(module mz-without-promises mzscheme + (provide (all-from-except mzscheme delay force promise?)))