From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,34b29f7884ececc8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-05-21 04:43:33 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news-fra1.dfn.de!news-koe1.dfn.de!RRZ.Uni-Koeln.DE!uni-duisburg.de!not-for-mail From: Georg Bauhaus Newsgroups: comp.lang.ada Subject: Re: Ada & Scripting Date: Wed, 21 May 2003 11:43:31 +0000 (UTC) Organization: GMUGHDU Message-ID: References: NNTP-Posting-Host: d2-hrz.uni-duisburg.de X-Trace: a1-hrz.uni-duisburg.de 1053517411 21273 134.91.1.15 (21 May 2003 11:43:31 GMT) X-Complaints-To: usenet@news.uni-duisburg.de NNTP-Posting-Date: Wed, 21 May 2003 11:43:31 +0000 (UTC) User-Agent: tin/1.5.8-20010221 ("Blue Water") (UNIX) (HP-UX/B.11.00 (9000/831)) Xref: archiver1.google.com comp.lang.ada:37582 Date: 2003-05-21T11:43:31+00:00 List-Id: Randy Brukardt wrote: : Bobby D. Bryant wrote in message ... :>I don't want you to use anything you don't want, but this looks like a :>good place to insert a basic observation on that: When I taught the :>freshman-level Foundations of Computer Science course here I spent : *one* :>lecture on Scheme syntax, and started in on recursion and induction in : the :>second lecture. : : : Gee, those must be terribly slow freshmen. :-) : Considering that the syntax of LISP is essentially: : expr ::= identifier | number | ( {expr} ) : Getting it do to something is a bit more interesting; but that's : semantics, not syntax. Lispers often say that :-). But is isn't true. Both from the perspective of an average young student, who will likely perceive "defun" as part of Lisp syntax, I think, and also from the Scheme perspective, which has standardized expression ::= variable | literal | procedure call | lambda expression | conditional | assignment | derived expression | macro use | macro block with lots of syntax rules preceding and following. (The parentheses are in the list rule) http://www.schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-10.html In PLT Scheme/DrScheme, there are language subsets. e.g. corresponding to beginners' level, where you don't have LET. Georg