Path: ...!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Lawrence D'Oliveiro Newsgroups: comp.os.linux.advocacy Subject: Re: Find "py.exe" & copy it to "Python" (flat, no extension). Date: Sat, 11 May 2024 01:13:35 -0000 (UTC) Organization: A noiseless patient Spider Lines: 24 Message-ID: References: <69ll3jhi08tml3m5cmhb3c6or82dd7vevb@4ax.com> <17cd7a872d09c50c$24862$3008159$802601b3@news.usenetexpress.com> <663e65d0$0$16413$426a34cc@news.free.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Sat, 11 May 2024 03:13:35 +0200 (CEST) Injection-Info: dont-email.me; posting-host="35cd064a09c147145ba6425e37519214"; logging-data="1753229"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19iK67sQa8smJ1LMLkGEpg9" User-Agent: Pan/0.155 (Kherson; fc5a80b8) Cancel-Lock: sha1:QU+qRnBWFXZ612l94htJj9Bc9Ss= Bytes: 2237 On 11 May 2024 00:44:47 GMT, rbowman wrote: > mine has > > Chapter 4: Metalinguistic Abstraction > 4.1 The Metacircular Evaluator > 4.2 Variations on a Scheme – Lazy Evaluation > 4.3 Packages > 4.4 Logic Programming > 4.5 Implementing the Query System Ah, I see. The 2nd edition has “4.3 Variations on a Scheme — Nondeterministic Computing” in place of “Packages”. > After doing the exercises that winter I had no reason to follow the > development of Scheme so I don't know if 'call-with-current-continuation' > was added or if the authors didn't think it important. It isn't in the > index either. That is so odd, because continuations are such a key feature of Scheme. They’re essentially a generalized control construct: you can use them to implement things like loops with multiple exits, exceptions, and coroutines. The one thing that’s difficult to do with them is arbitrary gotos (convenient, that).