From 5ac7cf7913cf754f6252a2a9eb2bfee1ea8b5acf Mon Sep 17 00:00:00 2001 From: Matthias Felleisen Date: Mon, 26 Nov 2007 02:22:16 +0000 Subject: [PATCH] svn: r7835 --- collects/htdp/convert.ss | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/collects/htdp/convert.ss b/collects/htdp/convert.ss index 6918e5f3ce..363204cfce 100644 --- a/collects/htdp/convert.ss +++ b/collects/htdp/convert.ss @@ -1,11 +1,9 @@ -#cs -(module convert mzscheme - (require (lib "unitsig.ss") - (lib "etc.ss") - (lib "class.ss") - (lib "mred.ss" "mred") - (lib "error.ss" "htdp") - (lib "prim.ss" "lang")) +#lang scheme/gui + +;(module convert mzscheme + (require (lib "etc.ss") + htdp/error + lang/prim) (provide-higher-order-primitive convert-gui (f2c)) (provide-higher-order-primitive convert-repl (f2c)) @@ -258,4 +256,4 @@ (delete-file out)) (with-output-to-file out (lambda () (with-input-from-file in (make-reader-for f))))) - ) +; )