From platter at earthlink.net Tue Jan 8 15:30:32 2002 From: platter at earthlink.net (platter@earthlink.net) Date: Sat Dec 3 00:52:11 2005 Subject: [info-cscheme] Help--how to disable the (identify-world) info at startup? Message-ID: <200201082030.g08KUWR01703@saba.bass> Hello all, Thank you in advance for reading this. I am interested in using MIT-scheme for some CGI scripting, and I am running into a problem. Because MIT scheme always outputs this info at startup, and I found no mention of how to disable this in the MIT Scheme User's manual, it is confusing the Apache server, which is expecting the content-type declaration. I am using this as the first line in the scheme CGI scripts: ":";exec /usr/local/bin/scheme -load $0 "$@" Thank you all in advance for the info; any additional pointers, tips, or words of wisdom greatly appreciated. Thanks, John P.S. I assume everybody knows what I'm talking about, but JIC this is the problem output that I want to banish: Scheme Microcode Version 14.5 MIT Scheme running under GNU/Linux Type `^C' (control-C) followed by `H' to obtain information about interrupts. Scheme saved on Tuesday November 27, 2001 at 1:53:32 AM Release 7.6.0 Microcode 14.5 Runtime 14.192 From cph at zurich.ai.mit.edu Thu Jan 17 15:06:37 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:52:11 2005 Subject: [info-cscheme] Help--how to disable the (identify-world) info at startup? In-Reply-To: <200201082030.g08KUWR01703@saba.bass> (platter@earthlink.net) Message-ID: Date: Tue, 08 Jan 2002 14:30:32 -0600 From: platter@earthlink.net Thank you in advance for reading this. I am interested in using MIT-scheme for some CGI scripting, and I am running into a problem. Because MIT scheme always outputs this info at startup, and I found no mention of how to disable this in the MIT Scheme User's manual, it is confusing the Apache server, which is expecting the content-type declaration. I am using this as the first line in the scheme CGI scripts: ":";exec /usr/local/bin/scheme -load $0 "$@" Thank you all in advance for the info; any additional pointers, tips, or words of wisdom greatly appreciated. The simplest thing I can think of would be to throw away the first few lines of output, perhaps by using the read function of bash. A more sophisticated alternative would be to create a named pipe, and open that pipe from within Scheme. Write the web page to the pipe. In the CGI script, rearrange the stdio file descriptors so that the output from the pipe goes to the right place. From vmerugu at hotmail.com Thu Jan 24 18:26:42 2002 From: vmerugu at hotmail.com (Venu Kumar Merugu) Date: Sat Dec 3 00:52:11 2005 Subject: [info-cscheme] Want to get started on Scheme Programming Language Message-ID: >Hi All >I have a basic question. Can anyone mail me a simple Hello World program in >scheme and give me a step by step procedure to compile and run that >program. >I have downloaded WinScheme48 software for windows but not anywhere it is >mentioned the procedure to compile and run a program. > >It will be great if anyone of you guys mail me the "Hello World" program >and if you have a compiler for scheme on Windows 2000 and the procedure to >compile and run. > >Thanks in advance for all the help > >Venu > _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. From vmerugu at hotmail.com Thu Jan 24 18:26:42 2002 From: vmerugu at hotmail.com (Venu Kumar Merugu) Date: Sat Dec 3 00:52:11 2005 Subject: [info-cscheme] Want to get started on Scheme Programming Language Message-ID: >Hi All >I have a basic question. Can anyone mail me a simple Hello World program in >scheme and give me a step by step procedure to compile and run that >program. >I have downloaded WinScheme48 software for windows but not anywhere it is >mentioned the procedure to compile and run a program. > >It will be great if anyone of you guys mail me the "Hello World" program >and if you have a compiler for scheme on Windows 2000 and the procedure to >compile and run. > >Thanks in advance for all the help > >Venu > _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. From platter at earthlink.net Fri Jan 25 00:00:34 2002 From: platter at earthlink.net (platter@earthlink.net) Date: Sat Dec 3 00:52:11 2005 Subject: [info-cscheme] Want to get started on Scheme Programming Language In-Reply-To: Message from "Venu Kumar Merugu" of "Thu, 24 Jan 2002 16:26:42 MST." Message-ID: <200201250500.g0P50Ya02736@saba.bass> Hello, I am not sure about WinScheme48, but in MIT scheme, the Hello World program is: (write-string "Hello World") Scheme is an interpreted language, so compiling a separate executable binary file before execution is not necessary. So you either start up your interpreter and type in the Hello World program, or save it in a script and execute it with the Scheme interpreter. MIT Scheme's homepage is http://www.swiss.ai.mit.edu/projects/scheme/mit/ and the documentation is located at http://www.swiss.ai.mit.edu/projects/scheme/documentation/ Some other helpful Scheme pages are http://www.schemers.org http://www.niksula.cs.hut.fi/~candolin/scheme/ http://mitpress.mit.edu/sicp/ Hope this helps, John >> Hi All I have a basic question. Can anyone mail me a simple >> Hello World program in scheme and give me a step by step >> procedure to compile and run that program. I have downloaded >> WinScheme48 software for windows but not anywhere it is >> mentioned the procedure to compile and run a program. >> >> It will be great if anyone of you guys mail me the "Hello >> World" program and if you have a compiler for scheme on Windows >> 2000 and the procedure to compile and run. >> >> Thanks in advance for all the help >> >> Venu >> Venu Kumar Merugu> _________________________________________________________________ Venu Kumar Merugu> Get your FREE download of MSN Explorer at Venu Kumar Merugu> http://explorer.msn.com/intl.asp. Venu Kumar Merugu> _______________________________________________ Venu Kumar Merugu> info-cscheme mailing list Venu Kumar Merugu> info-cscheme@zurich.ai.mit.edu Venu Kumar Merugu> http://zurich.ai.mit.edu/mailman/listinfo/info-cscheme From cph at zurich.ai.mit.edu Tue Jan 29 17:05:44 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:52:11 2005 Subject: [info-cscheme] MIT Scheme 7.6.1 released Message-ID: MIT Scheme 7.6.1 is a bug-fix release that provides a workaround for a bug in some AMD Athlon processors (as previously discussed here). The next release will be 7.7.0, due out in a month or two, which will feature hygienic-macro support. As usual, here's the URL: http://www.swiss.ai.mit.edu/projects/scheme/mit/ From rracine at adelphia.net Tue Jan 29 20:43:32 2002 From: rracine at adelphia.net (Ray Racine) Date: Sat Dec 3 00:52:12 2005 Subject: [info-cscheme] MIT Scheme 7.6.1 released In-Reply-To: References: Message-ID: <1012355013.1096.58.camel@celtic.celticrunes.com> Hi Chris, I have been using MIT Scheme after going through several of the others. Initially I was under the impression that MITScheme was in hiatus. Good to see otherwise. Some feedback. 1. There are users out there who appreciate your efforts. Thank you. 2. If I can be of any assistance with documentation or other efforts please ask. 3. My #1 feature request would be module support. From the read me for the 7.6 release I felt that some changes were brewing with module support. I understand there is limited module support available via cref. Is the cref module system here to stay for the near future? Is there any available doc on the capabilities of cref as a module system? A satisfied user, Ray Racine On Tue, 2002-01-29 at 17:05, Chris Hanson wrote: > MIT Scheme 7.6.1 is a bug-fix release that provides a workaround for a > bug in some AMD Athlon processors (as previously discussed here). The > next release will be 7.7.0, due out in a month or two, which will > feature hygienic-macro support. > > As usual, here's the URL: > > http://www.swiss.ai.mit.edu/projects/scheme/mit/ > > _______________________________________________ > info-cscheme mailing list > info-cscheme@zurich.ai.mit.edu > http://zurich.ai.mit.edu/mailman/listinfo/info-cscheme From LaurenceWood at SunyataSystems.Com Tue Jan 29 22:49:43 2002 From: LaurenceWood at SunyataSystems.Com (Laurence F. Wood) Date: Sat Dec 3 00:52:12 2005 Subject: [info-cscheme] MIT Scheme 7.6.1 released In-Reply-To: Message-ID: Hygenic macros, way cool chris! -----Original Message----- From: info-cscheme-admin@zurich.ai.mit.edu [mailto:info-cscheme-admin@zurich.ai.mit.edu]On Behalf Of Chris Hanson Sent: Tuesday, January 29, 2002 5:06 PM To: info-cscheme@zurich.ai.mit.edu Subject: [info-cscheme] MIT Scheme 7.6.1 released MIT Scheme 7.6.1 is a bug-fix release that provides a workaround for a bug in some AMD Athlon processors (as previously discussed here). The next release will be 7.7.0, due out in a month or two, which will feature hygienic-macro support. As usual, here's the URL: http://www.swiss.ai.mit.edu/projects/scheme/mit/ _______________________________________________ info-cscheme mailing list info-cscheme@zurich.ai.mit.edu http://zurich.ai.mit.edu/mailman/listinfo/info-cscheme From cph at zurich.ai.mit.edu Wed Jan 30 16:25:41 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:52:12 2005 Subject: [info-cscheme] revised MIT Scheme 7.6.1 Windows binary Message-ID: I made a mistake and omitted crypto and gdbm support from the 7.6.1 binary for Windows. I've just uploaded a new binary with that support compiled in. If you downloaded prior to a few minutes ago, and you want that support, please download the new binary. The installer advertises the release number as 7.6.1.1, in order to provide a visible distinction between this binary and the original binary; the latter advertised the release number as 7.6.1. This is the only visible change -- all other materials refer to the release as 7.6.1.