Path: ...!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: Editing "Forth" (PostScript). Date: Sat, 23 Mar 2024 22:50:50 -0000 (UTC) Organization: A noiseless patient Spider Lines: 17 Message-ID: References: <86sf0l9h6c.fsf@yaxley.in> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Sat, 23 Mar 2024 22:50:50 -0000 (UTC) Injection-Info: dont-email.me; posting-host="8288a6795704a6fce0c976674ad0a261"; logging-data="4111267"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/pcWbFmKwRvBOFDX4aqSCB" User-Agent: Pan/0.155 (Kherson; fc5a80b8) Cancel-Lock: sha1:I1BK++dyOsrzlZb3qkkSqPDJJLI= Bytes: 1702 On Sat, 23 Mar 2024 09:44:54 -0700 (Seattle), Relf wrote: > Now you're editing "Forth" (PostScript). PostScript is somewhat different from Forth. I like to illustrate the difference this say: compare YOU FORTH LOVE IF HONK THEN versus you postscript love {honk} if In Forth, you have a distinction between “compile time” and “run time”. In PostScript, hardly anything happens at “compile time”. Note how control constructs (conditionals, looping) are not specially handled at “compile time”; they are just built-in functions.