What LISP compilers and interpreters were available for 8-bit machines?What “Write your own RPG/Adventure game” books were available for 8-bit computers?

First occurrence in the Sixers sequence

How can I prevent a user from copying files on another hard drive?

Am I legally required to provide a (GPL licensed) source code even after a project is abandoned?

How to modify a string without altering its text properties

Scaling an object to change its key

In Street Fighter, what does the M stand for in M Bison?

Would a 7805 5 V regulator drain a 9 V battery?

What mathematical theory is required for high frequency trading?

How can the US president give an order to a civilian?

What preparations would Hubble have needed to return in a Shuttle?

Implementation of the Jacobi Symbol in C

Explicit song lyrics checker

How "fast" do astronomical events occur?

I found a password with hashcat but it doesn't work

How can a clan of females defend themselves in the ancient world against wandering bands?

How to write a nice frame challenge?

In a list with unique pairs A, B, how can I sort them so that the last B is the first A in the next pair?

Leaving job close to major deadlines

What is the highest power supply a Raspberry pi 3 B can handle without getting damaged?

How do I find which software is doing an SSH connection?

Is there any possible way to get these hearts as Adult Link?

Why is Havana covered in 5-digit numbers in Our Man in Havana?

Is there any way to revive my Sim?

Make symbols atomic, without losing their type



What LISP compilers and interpreters were available for 8-bit machines?


What “Write your own RPG/Adventure game” books were available for 8-bit computers?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








13















What LISP or LISP-like language compilers and interpreters were available for 8-bit microcomputers? Criteria for "8-bit" include that it should certainly run and execute non-trivial programs given no more than 64 KB of RAM, and ideally it should run in much smaller amounts of RAM or RAM+ROM, the just as the common 8-bit BASICs do.



In answers, the following information would be interesting to me:



  • Pricing information, if it was commercial software.

  • Historical and current availability of source and binaries.

  • The dialect of LISP (LISP1.5, MACLISP, Interlisp, Scheme, etc.) that the implementation is most similar to, if any.

  • Anything that's unusual about the language (special features, significant differences from a standard dialect it otherwise adheres to, etc.)

  • What kind of editor it provided, or what editors were expected to be used if none was.

  • Memory and offline storage usage.

  • Any interesting details about how it was implemented, or links to such.

I'm especially interested in implementations that have been used to write substantial programs (or large parts of them) and/or commercial software, though of course information about even "toy" interpreters is also welcome.



If you're not sure if a language is "LISP-like," one criterion you could consider is whether functions passed to other functions (as in map) is an easy and common idiom in it.










share|improve this question



















  • 6





    @Chenmunka LISP compilers have existed from the start (Hart and Levin's compiler for LISP 1.5 in 1962, the world's first self-hosting compiler) to the modern day (Clojure), and as Wikipedia states, "most substantial Lisp systems also include a compiler" and "some Lisp systems compile every expression to native machine code."

    – Curt J. Sampson
    Jun 2 at 13:14






  • 5





    @Chenmunka Particularly for smaller machines (which is of course what we're talking about here), a compiler may be required if one wants to write substantial programs in LISP. (L Peter Deutsch's PDP-1 port of LISP 1.5 was apparently not terribly usable for practical programs because there was simply not enough RAM left after the interpreter used its part of the 4 Kword (≃ 8-12 Kbytes) address space.) I'm particularly interested in non-toy implementations that might be used to write commercial sofware, so I'd definitely like to hear about compilers, if there were any.

    – Curt J. Sampson
    Jun 2 at 13:21






  • 3





    @Chenmunka the whole "Lisp is interpreted" thing is a long dead myth and misunderstanding.

    – Will Hartung
    Jun 2 at 17:27






  • 5





    @WillHartung: Anybody who knows the slightest bit about programming languages knows that compilation or interpretation are not traits of the programming language but the compiler or interpreter (duh!). I think it was Shriram Krishnamurthi who said that if English were typed, "compiled language" and "interpreted language" would be type errors. The question "Is Lisp interpreted" cannot even be answered with "No", since the question is fundamentally non-sensical.

    – Jörg W Mittag
    Jun 2 at 21:37






  • 4





    @Chenmunka It doesn't seem to have been the the case in the late 70s and early 80s, when 8-bit micros were most popular, that "almost all" Lisps were TILs, and I don't know if it was ever really the case. But if you're concerned, perhaps you could ask a question about that. (I makes little difference as far as this question goes, since I explicitly included interpreters in the question.)

    – Curt J. Sampson
    Jun 3 at 8:27

















13















What LISP or LISP-like language compilers and interpreters were available for 8-bit microcomputers? Criteria for "8-bit" include that it should certainly run and execute non-trivial programs given no more than 64 KB of RAM, and ideally it should run in much smaller amounts of RAM or RAM+ROM, the just as the common 8-bit BASICs do.



In answers, the following information would be interesting to me:



  • Pricing information, if it was commercial software.

  • Historical and current availability of source and binaries.

  • The dialect of LISP (LISP1.5, MACLISP, Interlisp, Scheme, etc.) that the implementation is most similar to, if any.

  • Anything that's unusual about the language (special features, significant differences from a standard dialect it otherwise adheres to, etc.)

  • What kind of editor it provided, or what editors were expected to be used if none was.

  • Memory and offline storage usage.

  • Any interesting details about how it was implemented, or links to such.

I'm especially interested in implementations that have been used to write substantial programs (or large parts of them) and/or commercial software, though of course information about even "toy" interpreters is also welcome.



If you're not sure if a language is "LISP-like," one criterion you could consider is whether functions passed to other functions (as in map) is an easy and common idiom in it.










share|improve this question



















  • 6





    @Chenmunka LISP compilers have existed from the start (Hart and Levin's compiler for LISP 1.5 in 1962, the world's first self-hosting compiler) to the modern day (Clojure), and as Wikipedia states, "most substantial Lisp systems also include a compiler" and "some Lisp systems compile every expression to native machine code."

    – Curt J. Sampson
    Jun 2 at 13:14






  • 5





    @Chenmunka Particularly for smaller machines (which is of course what we're talking about here), a compiler may be required if one wants to write substantial programs in LISP. (L Peter Deutsch's PDP-1 port of LISP 1.5 was apparently not terribly usable for practical programs because there was simply not enough RAM left after the interpreter used its part of the 4 Kword (≃ 8-12 Kbytes) address space.) I'm particularly interested in non-toy implementations that might be used to write commercial sofware, so I'd definitely like to hear about compilers, if there were any.

    – Curt J. Sampson
    Jun 2 at 13:21






  • 3





    @Chenmunka the whole "Lisp is interpreted" thing is a long dead myth and misunderstanding.

    – Will Hartung
    Jun 2 at 17:27






  • 5





    @WillHartung: Anybody who knows the slightest bit about programming languages knows that compilation or interpretation are not traits of the programming language but the compiler or interpreter (duh!). I think it was Shriram Krishnamurthi who said that if English were typed, "compiled language" and "interpreted language" would be type errors. The question "Is Lisp interpreted" cannot even be answered with "No", since the question is fundamentally non-sensical.

    – Jörg W Mittag
    Jun 2 at 21:37






  • 4





    @Chenmunka It doesn't seem to have been the the case in the late 70s and early 80s, when 8-bit micros were most popular, that "almost all" Lisps were TILs, and I don't know if it was ever really the case. But if you're concerned, perhaps you could ask a question about that. (I makes little difference as far as this question goes, since I explicitly included interpreters in the question.)

    – Curt J. Sampson
    Jun 3 at 8:27













13












13








13


5






What LISP or LISP-like language compilers and interpreters were available for 8-bit microcomputers? Criteria for "8-bit" include that it should certainly run and execute non-trivial programs given no more than 64 KB of RAM, and ideally it should run in much smaller amounts of RAM or RAM+ROM, the just as the common 8-bit BASICs do.



In answers, the following information would be interesting to me:



  • Pricing information, if it was commercial software.

  • Historical and current availability of source and binaries.

  • The dialect of LISP (LISP1.5, MACLISP, Interlisp, Scheme, etc.) that the implementation is most similar to, if any.

  • Anything that's unusual about the language (special features, significant differences from a standard dialect it otherwise adheres to, etc.)

  • What kind of editor it provided, or what editors were expected to be used if none was.

  • Memory and offline storage usage.

  • Any interesting details about how it was implemented, or links to such.

I'm especially interested in implementations that have been used to write substantial programs (or large parts of them) and/or commercial software, though of course information about even "toy" interpreters is also welcome.



If you're not sure if a language is "LISP-like," one criterion you could consider is whether functions passed to other functions (as in map) is an easy and common idiom in it.










share|improve this question
















What LISP or LISP-like language compilers and interpreters were available for 8-bit microcomputers? Criteria for "8-bit" include that it should certainly run and execute non-trivial programs given no more than 64 KB of RAM, and ideally it should run in much smaller amounts of RAM or RAM+ROM, the just as the common 8-bit BASICs do.



In answers, the following information would be interesting to me:



  • Pricing information, if it was commercial software.

  • Historical and current availability of source and binaries.

  • The dialect of LISP (LISP1.5, MACLISP, Interlisp, Scheme, etc.) that the implementation is most similar to, if any.

  • Anything that's unusual about the language (special features, significant differences from a standard dialect it otherwise adheres to, etc.)

  • What kind of editor it provided, or what editors were expected to be used if none was.

  • Memory and offline storage usage.

  • Any interesting details about how it was implemented, or links to such.

I'm especially interested in implementations that have been used to write substantial programs (or large parts of them) and/or commercial software, though of course information about even "toy" interpreters is also welcome.



If you're not sure if a language is "LISP-like," one criterion you could consider is whether functions passed to other functions (as in map) is an easy and common idiom in it.







8-bit-microcomputers lisp






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 3 at 1:29







Curt J. Sampson

















asked Jun 2 at 0:55









Curt J. SampsonCurt J. Sampson

411110




411110







  • 6





    @Chenmunka LISP compilers have existed from the start (Hart and Levin's compiler for LISP 1.5 in 1962, the world's first self-hosting compiler) to the modern day (Clojure), and as Wikipedia states, "most substantial Lisp systems also include a compiler" and "some Lisp systems compile every expression to native machine code."

    – Curt J. Sampson
    Jun 2 at 13:14






  • 5





    @Chenmunka Particularly for smaller machines (which is of course what we're talking about here), a compiler may be required if one wants to write substantial programs in LISP. (L Peter Deutsch's PDP-1 port of LISP 1.5 was apparently not terribly usable for practical programs because there was simply not enough RAM left after the interpreter used its part of the 4 Kword (≃ 8-12 Kbytes) address space.) I'm particularly interested in non-toy implementations that might be used to write commercial sofware, so I'd definitely like to hear about compilers, if there were any.

    – Curt J. Sampson
    Jun 2 at 13:21






  • 3





    @Chenmunka the whole "Lisp is interpreted" thing is a long dead myth and misunderstanding.

    – Will Hartung
    Jun 2 at 17:27






  • 5





    @WillHartung: Anybody who knows the slightest bit about programming languages knows that compilation or interpretation are not traits of the programming language but the compiler or interpreter (duh!). I think it was Shriram Krishnamurthi who said that if English were typed, "compiled language" and "interpreted language" would be type errors. The question "Is Lisp interpreted" cannot even be answered with "No", since the question is fundamentally non-sensical.

    – Jörg W Mittag
    Jun 2 at 21:37






  • 4





    @Chenmunka It doesn't seem to have been the the case in the late 70s and early 80s, when 8-bit micros were most popular, that "almost all" Lisps were TILs, and I don't know if it was ever really the case. But if you're concerned, perhaps you could ask a question about that. (I makes little difference as far as this question goes, since I explicitly included interpreters in the question.)

    – Curt J. Sampson
    Jun 3 at 8:27












  • 6





    @Chenmunka LISP compilers have existed from the start (Hart and Levin's compiler for LISP 1.5 in 1962, the world's first self-hosting compiler) to the modern day (Clojure), and as Wikipedia states, "most substantial Lisp systems also include a compiler" and "some Lisp systems compile every expression to native machine code."

    – Curt J. Sampson
    Jun 2 at 13:14






  • 5





    @Chenmunka Particularly for smaller machines (which is of course what we're talking about here), a compiler may be required if one wants to write substantial programs in LISP. (L Peter Deutsch's PDP-1 port of LISP 1.5 was apparently not terribly usable for practical programs because there was simply not enough RAM left after the interpreter used its part of the 4 Kword (≃ 8-12 Kbytes) address space.) I'm particularly interested in non-toy implementations that might be used to write commercial sofware, so I'd definitely like to hear about compilers, if there were any.

    – Curt J. Sampson
    Jun 2 at 13:21






  • 3





    @Chenmunka the whole "Lisp is interpreted" thing is a long dead myth and misunderstanding.

    – Will Hartung
    Jun 2 at 17:27






  • 5





    @WillHartung: Anybody who knows the slightest bit about programming languages knows that compilation or interpretation are not traits of the programming language but the compiler or interpreter (duh!). I think it was Shriram Krishnamurthi who said that if English were typed, "compiled language" and "interpreted language" would be type errors. The question "Is Lisp interpreted" cannot even be answered with "No", since the question is fundamentally non-sensical.

    – Jörg W Mittag
    Jun 2 at 21:37






  • 4





    @Chenmunka It doesn't seem to have been the the case in the late 70s and early 80s, when 8-bit micros were most popular, that "almost all" Lisps were TILs, and I don't know if it was ever really the case. But if you're concerned, perhaps you could ask a question about that. (I makes little difference as far as this question goes, since I explicitly included interpreters in the question.)

    – Curt J. Sampson
    Jun 3 at 8:27







6




6





@Chenmunka LISP compilers have existed from the start (Hart and Levin's compiler for LISP 1.5 in 1962, the world's first self-hosting compiler) to the modern day (Clojure), and as Wikipedia states, "most substantial Lisp systems also include a compiler" and "some Lisp systems compile every expression to native machine code."

– Curt J. Sampson
Jun 2 at 13:14





@Chenmunka LISP compilers have existed from the start (Hart and Levin's compiler for LISP 1.5 in 1962, the world's first self-hosting compiler) to the modern day (Clojure), and as Wikipedia states, "most substantial Lisp systems also include a compiler" and "some Lisp systems compile every expression to native machine code."

– Curt J. Sampson
Jun 2 at 13:14




5




5





@Chenmunka Particularly for smaller machines (which is of course what we're talking about here), a compiler may be required if one wants to write substantial programs in LISP. (L Peter Deutsch's PDP-1 port of LISP 1.5 was apparently not terribly usable for practical programs because there was simply not enough RAM left after the interpreter used its part of the 4 Kword (≃ 8-12 Kbytes) address space.) I'm particularly interested in non-toy implementations that might be used to write commercial sofware, so I'd definitely like to hear about compilers, if there were any.

– Curt J. Sampson
Jun 2 at 13:21





@Chenmunka Particularly for smaller machines (which is of course what we're talking about here), a compiler may be required if one wants to write substantial programs in LISP. (L Peter Deutsch's PDP-1 port of LISP 1.5 was apparently not terribly usable for practical programs because there was simply not enough RAM left after the interpreter used its part of the 4 Kword (≃ 8-12 Kbytes) address space.) I'm particularly interested in non-toy implementations that might be used to write commercial sofware, so I'd definitely like to hear about compilers, if there were any.

– Curt J. Sampson
Jun 2 at 13:21




3




3





@Chenmunka the whole "Lisp is interpreted" thing is a long dead myth and misunderstanding.

– Will Hartung
Jun 2 at 17:27





@Chenmunka the whole "Lisp is interpreted" thing is a long dead myth and misunderstanding.

– Will Hartung
Jun 2 at 17:27




5




5





@WillHartung: Anybody who knows the slightest bit about programming languages knows that compilation or interpretation are not traits of the programming language but the compiler or interpreter (duh!). I think it was Shriram Krishnamurthi who said that if English were typed, "compiled language" and "interpreted language" would be type errors. The question "Is Lisp interpreted" cannot even be answered with "No", since the question is fundamentally non-sensical.

– Jörg W Mittag
Jun 2 at 21:37





@WillHartung: Anybody who knows the slightest bit about programming languages knows that compilation or interpretation are not traits of the programming language but the compiler or interpreter (duh!). I think it was Shriram Krishnamurthi who said that if English were typed, "compiled language" and "interpreted language" would be type errors. The question "Is Lisp interpreted" cannot even be answered with "No", since the question is fundamentally non-sensical.

– Jörg W Mittag
Jun 2 at 21:37




4




4





@Chenmunka It doesn't seem to have been the the case in the late 70s and early 80s, when 8-bit micros were most popular, that "almost all" Lisps were TILs, and I don't know if it was ever really the case. But if you're concerned, perhaps you could ask a question about that. (I makes little difference as far as this question goes, since I explicitly included interpreters in the question.)

– Curt J. Sampson
Jun 3 at 8:27





@Chenmunka It doesn't seem to have been the the case in the late 70s and early 80s, when 8-bit micros were most popular, that "almost all" Lisps were TILs, and I don't know if it was ever really the case. But if you're concerned, perhaps you could ask a question about that. (I makes little difference as far as this question goes, since I explicitly included interpreters in the question.)

– Curt J. Sampson
Jun 3 at 8:27










3 Answers
3






active

oldest

votes


















18














To volunteer a few:



Acornsoft LISP. First released in 1982 on tape, disk and ROM chip for the BBC Micro and rereleased as a cartridge for the Acorn Electron in 1984; possibly related to the Apple II's Owl LISP.



SpecLISP. Released in 1983 for the ZX Spectrum, a subset of Stanford LISP. It wasn't well-documented at the time, so is a little obscure. Includes Logo-style drawing functions.



Microsoft LISP. A CP/M product originally, later ported to machines including the 8-bit Apple II and TRS-80. Not just an interpreter, also a compiler (at least for the two 8080/z80 platforms).



Micro-LISP. A public domain LISP interpreter from 1986 for the Commodore 64 by Nick Vrtis.



LISP 64. Another LISP interpreter from 1986 for the Commodore 64 (author: Peter Feldtmann).



Inter-LISP/65 for Atari 8-bit computers.



PLisp for the Apple II.






share|improve this answer




















  • 5





    Community Wiki, as I haven't provided a great deal of detail and perhaps somebody else can.

    – Tommy
    Jun 2 at 1:22






  • 1





    Microsoft Lisp :-o Now THERE would have been an interesting language for extending newer Microsoft products instead of VBA.

    – Thorbjørn Ravn Andersen
    Jun 2 at 18:12






  • 4





    @ThorbjørnRavnAndersen: Microsoft has done a lot of cool stuff they never productized or abandoned along the way. They did the first Unix for PCs (Xenix), Windows NT started out as a very nicely designed OS that was highly portable (x86, PowerPC, Sparc, MIPS, Alpha, IA-64, ARM, AMD64) and had clear abstraction layers that allowed multiple "personalities" on top of the kernel (Win16, Win32, DOS, OS/2, POSIX), their Research Division is incredible (they employ Simon Peyton Jones, for example, lead designer of Haskell and GHC, and Tony friggin Hoare!), the Singularity OS was brilliant.

    – Jörg W Mittag
    Jun 2 at 21:48






  • 1





    Over the past 10-15 years, they have been working to get Windows back into the shape it was when NT first came out, and ports to ARM, as well as stuff like Windows Subsystem for Linux are the result. I think it started with the XBox, which forced them to revive the abandoned PowerPC port.

    – Jörg W Mittag
    Jun 2 at 21:49











  • My parents had a Lisp interpreter for the Commodore Pet. I can't remember what it was called though.

    – JeremyP
    Jun 3 at 9:10


















6














The following answer isn't strictly speaking a version of LISP. That's why I didn't add it to the community answer.



ZIL, the Zork Implementational Language, was intended to allow interactive fiction games to run on desktops. ZIL was derived from MDL which, in turn, was derived from LISP. But ZIL wasn't really a full blown Lisp.



Infocom's original compiler for ZIL, Zorch, was never made publicly available, but there is also an open source compiler, ZILF, which includes a incomplete ZIL language description






share|improve this answer

























  • This answer is quite useful to me since I'm interested in any LISP-like languages especially if they've been used to write substantial and/or commerical programs for 8-bit micros.

    – Curt J. Sampson
    Jun 2 at 13:35






  • 2





    @CurtJ.Sampson Okay, then another not-actual-Lisp non-answer would be Logo. This mostly-educational language was available for quite a number of 8-bit machines.

    – RichF
    Jun 2 at 13:39






  • 1





    @RichF Wow. I just had a scan through the Apple Logo II Reference Manual; I had no idea that Logo was so LISPy, passing code blocks for IF etc. and with even the ability to rewrite its own definitions. That said, it doesn't seem to use the "passing functions to functions" idiom, as ZIL does, that would make it feel truly LISPy to me.

    – Curt J. Sampson
    Jun 2 at 14:33







  • 1





    In fact DR LOGO was included with Amstrad disc-based CPC machines. However, LOGO is a long way sorry of being LISP, despite some great list processing functionality.

    – Mark Williams
    Jun 2 at 16:11






  • 1





    Back to ZIL: further research makes it peretty clear that it is indeed a LISP at its core (it's basically a variant of MDL designed to execute code originally written in MDL with extensions). I am not clear on how much has been removed, but it's looking like it may have been too much to make this a general-purpose LISP.

    – Curt J. Sampson
    Jun 3 at 1:26


















5














There was a variant of InterLisp for Atari 8-bit systems.



There was Gnosis P-Lisp for Apple II, which was very simple.



There were a number of Lisp implementations for Z-80 running CP/M.



And, straddling the 8/16-bit divide, there was Golden Common Lisp for IBM PC, which ran on 8088 (and runs nicely on my HP 95LX as a result) but actually was a real Common Lisp implementation.



Of course the various 16 bit systems got more “real” Lisp implementations, especially as memory available grew.






share|improve this answer























  • I'm not actually interested in (most?) 16-bit implementations, and this helped me figure out why: "small memory" turns out to be an integral characteristic I'm looking for. So thanks for helping out with that. The two implementations you linked are helpful.

    – Curt J. Sampson
    Jun 3 at 6:07











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "648"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f11192%2fwhat-lisp-compilers-and-interpreters-were-available-for-8-bit-machines%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









18














To volunteer a few:



Acornsoft LISP. First released in 1982 on tape, disk and ROM chip for the BBC Micro and rereleased as a cartridge for the Acorn Electron in 1984; possibly related to the Apple II's Owl LISP.



SpecLISP. Released in 1983 for the ZX Spectrum, a subset of Stanford LISP. It wasn't well-documented at the time, so is a little obscure. Includes Logo-style drawing functions.



Microsoft LISP. A CP/M product originally, later ported to machines including the 8-bit Apple II and TRS-80. Not just an interpreter, also a compiler (at least for the two 8080/z80 platforms).



Micro-LISP. A public domain LISP interpreter from 1986 for the Commodore 64 by Nick Vrtis.



LISP 64. Another LISP interpreter from 1986 for the Commodore 64 (author: Peter Feldtmann).



Inter-LISP/65 for Atari 8-bit computers.



PLisp for the Apple II.






share|improve this answer




















  • 5





    Community Wiki, as I haven't provided a great deal of detail and perhaps somebody else can.

    – Tommy
    Jun 2 at 1:22






  • 1





    Microsoft Lisp :-o Now THERE would have been an interesting language for extending newer Microsoft products instead of VBA.

    – Thorbjørn Ravn Andersen
    Jun 2 at 18:12






  • 4





    @ThorbjørnRavnAndersen: Microsoft has done a lot of cool stuff they never productized or abandoned along the way. They did the first Unix for PCs (Xenix), Windows NT started out as a very nicely designed OS that was highly portable (x86, PowerPC, Sparc, MIPS, Alpha, IA-64, ARM, AMD64) and had clear abstraction layers that allowed multiple "personalities" on top of the kernel (Win16, Win32, DOS, OS/2, POSIX), their Research Division is incredible (they employ Simon Peyton Jones, for example, lead designer of Haskell and GHC, and Tony friggin Hoare!), the Singularity OS was brilliant.

    – Jörg W Mittag
    Jun 2 at 21:48






  • 1





    Over the past 10-15 years, they have been working to get Windows back into the shape it was when NT first came out, and ports to ARM, as well as stuff like Windows Subsystem for Linux are the result. I think it started with the XBox, which forced them to revive the abandoned PowerPC port.

    – Jörg W Mittag
    Jun 2 at 21:49











  • My parents had a Lisp interpreter for the Commodore Pet. I can't remember what it was called though.

    – JeremyP
    Jun 3 at 9:10















18














To volunteer a few:



Acornsoft LISP. First released in 1982 on tape, disk and ROM chip for the BBC Micro and rereleased as a cartridge for the Acorn Electron in 1984; possibly related to the Apple II's Owl LISP.



SpecLISP. Released in 1983 for the ZX Spectrum, a subset of Stanford LISP. It wasn't well-documented at the time, so is a little obscure. Includes Logo-style drawing functions.



Microsoft LISP. A CP/M product originally, later ported to machines including the 8-bit Apple II and TRS-80. Not just an interpreter, also a compiler (at least for the two 8080/z80 platforms).



Micro-LISP. A public domain LISP interpreter from 1986 for the Commodore 64 by Nick Vrtis.



LISP 64. Another LISP interpreter from 1986 for the Commodore 64 (author: Peter Feldtmann).



Inter-LISP/65 for Atari 8-bit computers.



PLisp for the Apple II.






share|improve this answer




















  • 5





    Community Wiki, as I haven't provided a great deal of detail and perhaps somebody else can.

    – Tommy
    Jun 2 at 1:22






  • 1





    Microsoft Lisp :-o Now THERE would have been an interesting language for extending newer Microsoft products instead of VBA.

    – Thorbjørn Ravn Andersen
    Jun 2 at 18:12






  • 4





    @ThorbjørnRavnAndersen: Microsoft has done a lot of cool stuff they never productized or abandoned along the way. They did the first Unix for PCs (Xenix), Windows NT started out as a very nicely designed OS that was highly portable (x86, PowerPC, Sparc, MIPS, Alpha, IA-64, ARM, AMD64) and had clear abstraction layers that allowed multiple "personalities" on top of the kernel (Win16, Win32, DOS, OS/2, POSIX), their Research Division is incredible (they employ Simon Peyton Jones, for example, lead designer of Haskell and GHC, and Tony friggin Hoare!), the Singularity OS was brilliant.

    – Jörg W Mittag
    Jun 2 at 21:48






  • 1





    Over the past 10-15 years, they have been working to get Windows back into the shape it was when NT first came out, and ports to ARM, as well as stuff like Windows Subsystem for Linux are the result. I think it started with the XBox, which forced them to revive the abandoned PowerPC port.

    – Jörg W Mittag
    Jun 2 at 21:49











  • My parents had a Lisp interpreter for the Commodore Pet. I can't remember what it was called though.

    – JeremyP
    Jun 3 at 9:10













18












18








18







To volunteer a few:



Acornsoft LISP. First released in 1982 on tape, disk and ROM chip for the BBC Micro and rereleased as a cartridge for the Acorn Electron in 1984; possibly related to the Apple II's Owl LISP.



SpecLISP. Released in 1983 for the ZX Spectrum, a subset of Stanford LISP. It wasn't well-documented at the time, so is a little obscure. Includes Logo-style drawing functions.



Microsoft LISP. A CP/M product originally, later ported to machines including the 8-bit Apple II and TRS-80. Not just an interpreter, also a compiler (at least for the two 8080/z80 platforms).



Micro-LISP. A public domain LISP interpreter from 1986 for the Commodore 64 by Nick Vrtis.



LISP 64. Another LISP interpreter from 1986 for the Commodore 64 (author: Peter Feldtmann).



Inter-LISP/65 for Atari 8-bit computers.



PLisp for the Apple II.






share|improve this answer















To volunteer a few:



Acornsoft LISP. First released in 1982 on tape, disk and ROM chip for the BBC Micro and rereleased as a cartridge for the Acorn Electron in 1984; possibly related to the Apple II's Owl LISP.



SpecLISP. Released in 1983 for the ZX Spectrum, a subset of Stanford LISP. It wasn't well-documented at the time, so is a little obscure. Includes Logo-style drawing functions.



Microsoft LISP. A CP/M product originally, later ported to machines including the 8-bit Apple II and TRS-80. Not just an interpreter, also a compiler (at least for the two 8080/z80 platforms).



Micro-LISP. A public domain LISP interpreter from 1986 for the Commodore 64 by Nick Vrtis.



LISP 64. Another LISP interpreter from 1986 for the Commodore 64 (author: Peter Feldtmann).



Inter-LISP/65 for Atari 8-bit computers.



PLisp for the Apple II.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jun 3 at 6:10


























community wiki





5 revs, 3 users 51%
Tommy








  • 5





    Community Wiki, as I haven't provided a great deal of detail and perhaps somebody else can.

    – Tommy
    Jun 2 at 1:22






  • 1





    Microsoft Lisp :-o Now THERE would have been an interesting language for extending newer Microsoft products instead of VBA.

    – Thorbjørn Ravn Andersen
    Jun 2 at 18:12






  • 4





    @ThorbjørnRavnAndersen: Microsoft has done a lot of cool stuff they never productized or abandoned along the way. They did the first Unix for PCs (Xenix), Windows NT started out as a very nicely designed OS that was highly portable (x86, PowerPC, Sparc, MIPS, Alpha, IA-64, ARM, AMD64) and had clear abstraction layers that allowed multiple "personalities" on top of the kernel (Win16, Win32, DOS, OS/2, POSIX), their Research Division is incredible (they employ Simon Peyton Jones, for example, lead designer of Haskell and GHC, and Tony friggin Hoare!), the Singularity OS was brilliant.

    – Jörg W Mittag
    Jun 2 at 21:48






  • 1





    Over the past 10-15 years, they have been working to get Windows back into the shape it was when NT first came out, and ports to ARM, as well as stuff like Windows Subsystem for Linux are the result. I think it started with the XBox, which forced them to revive the abandoned PowerPC port.

    – Jörg W Mittag
    Jun 2 at 21:49











  • My parents had a Lisp interpreter for the Commodore Pet. I can't remember what it was called though.

    – JeremyP
    Jun 3 at 9:10












  • 5





    Community Wiki, as I haven't provided a great deal of detail and perhaps somebody else can.

    – Tommy
    Jun 2 at 1:22






  • 1





    Microsoft Lisp :-o Now THERE would have been an interesting language for extending newer Microsoft products instead of VBA.

    – Thorbjørn Ravn Andersen
    Jun 2 at 18:12






  • 4





    @ThorbjørnRavnAndersen: Microsoft has done a lot of cool stuff they never productized or abandoned along the way. They did the first Unix for PCs (Xenix), Windows NT started out as a very nicely designed OS that was highly portable (x86, PowerPC, Sparc, MIPS, Alpha, IA-64, ARM, AMD64) and had clear abstraction layers that allowed multiple "personalities" on top of the kernel (Win16, Win32, DOS, OS/2, POSIX), their Research Division is incredible (they employ Simon Peyton Jones, for example, lead designer of Haskell and GHC, and Tony friggin Hoare!), the Singularity OS was brilliant.

    – Jörg W Mittag
    Jun 2 at 21:48






  • 1





    Over the past 10-15 years, they have been working to get Windows back into the shape it was when NT first came out, and ports to ARM, as well as stuff like Windows Subsystem for Linux are the result. I think it started with the XBox, which forced them to revive the abandoned PowerPC port.

    – Jörg W Mittag
    Jun 2 at 21:49











  • My parents had a Lisp interpreter for the Commodore Pet. I can't remember what it was called though.

    – JeremyP
    Jun 3 at 9:10







5




5





Community Wiki, as I haven't provided a great deal of detail and perhaps somebody else can.

– Tommy
Jun 2 at 1:22





Community Wiki, as I haven't provided a great deal of detail and perhaps somebody else can.

– Tommy
Jun 2 at 1:22




1




1





Microsoft Lisp :-o Now THERE would have been an interesting language for extending newer Microsoft products instead of VBA.

– Thorbjørn Ravn Andersen
Jun 2 at 18:12





Microsoft Lisp :-o Now THERE would have been an interesting language for extending newer Microsoft products instead of VBA.

– Thorbjørn Ravn Andersen
Jun 2 at 18:12




4




4





@ThorbjørnRavnAndersen: Microsoft has done a lot of cool stuff they never productized or abandoned along the way. They did the first Unix for PCs (Xenix), Windows NT started out as a very nicely designed OS that was highly portable (x86, PowerPC, Sparc, MIPS, Alpha, IA-64, ARM, AMD64) and had clear abstraction layers that allowed multiple "personalities" on top of the kernel (Win16, Win32, DOS, OS/2, POSIX), their Research Division is incredible (they employ Simon Peyton Jones, for example, lead designer of Haskell and GHC, and Tony friggin Hoare!), the Singularity OS was brilliant.

– Jörg W Mittag
Jun 2 at 21:48





@ThorbjørnRavnAndersen: Microsoft has done a lot of cool stuff they never productized or abandoned along the way. They did the first Unix for PCs (Xenix), Windows NT started out as a very nicely designed OS that was highly portable (x86, PowerPC, Sparc, MIPS, Alpha, IA-64, ARM, AMD64) and had clear abstraction layers that allowed multiple "personalities" on top of the kernel (Win16, Win32, DOS, OS/2, POSIX), their Research Division is incredible (they employ Simon Peyton Jones, for example, lead designer of Haskell and GHC, and Tony friggin Hoare!), the Singularity OS was brilliant.

– Jörg W Mittag
Jun 2 at 21:48




1




1





Over the past 10-15 years, they have been working to get Windows back into the shape it was when NT first came out, and ports to ARM, as well as stuff like Windows Subsystem for Linux are the result. I think it started with the XBox, which forced them to revive the abandoned PowerPC port.

– Jörg W Mittag
Jun 2 at 21:49





Over the past 10-15 years, they have been working to get Windows back into the shape it was when NT first came out, and ports to ARM, as well as stuff like Windows Subsystem for Linux are the result. I think it started with the XBox, which forced them to revive the abandoned PowerPC port.

– Jörg W Mittag
Jun 2 at 21:49













My parents had a Lisp interpreter for the Commodore Pet. I can't remember what it was called though.

– JeremyP
Jun 3 at 9:10





My parents had a Lisp interpreter for the Commodore Pet. I can't remember what it was called though.

– JeremyP
Jun 3 at 9:10













6














The following answer isn't strictly speaking a version of LISP. That's why I didn't add it to the community answer.



ZIL, the Zork Implementational Language, was intended to allow interactive fiction games to run on desktops. ZIL was derived from MDL which, in turn, was derived from LISP. But ZIL wasn't really a full blown Lisp.



Infocom's original compiler for ZIL, Zorch, was never made publicly available, but there is also an open source compiler, ZILF, which includes a incomplete ZIL language description






share|improve this answer

























  • This answer is quite useful to me since I'm interested in any LISP-like languages especially if they've been used to write substantial and/or commerical programs for 8-bit micros.

    – Curt J. Sampson
    Jun 2 at 13:35






  • 2





    @CurtJ.Sampson Okay, then another not-actual-Lisp non-answer would be Logo. This mostly-educational language was available for quite a number of 8-bit machines.

    – RichF
    Jun 2 at 13:39






  • 1





    @RichF Wow. I just had a scan through the Apple Logo II Reference Manual; I had no idea that Logo was so LISPy, passing code blocks for IF etc. and with even the ability to rewrite its own definitions. That said, it doesn't seem to use the "passing functions to functions" idiom, as ZIL does, that would make it feel truly LISPy to me.

    – Curt J. Sampson
    Jun 2 at 14:33







  • 1





    In fact DR LOGO was included with Amstrad disc-based CPC machines. However, LOGO is a long way sorry of being LISP, despite some great list processing functionality.

    – Mark Williams
    Jun 2 at 16:11






  • 1





    Back to ZIL: further research makes it peretty clear that it is indeed a LISP at its core (it's basically a variant of MDL designed to execute code originally written in MDL with extensions). I am not clear on how much has been removed, but it's looking like it may have been too much to make this a general-purpose LISP.

    – Curt J. Sampson
    Jun 3 at 1:26















6














The following answer isn't strictly speaking a version of LISP. That's why I didn't add it to the community answer.



ZIL, the Zork Implementational Language, was intended to allow interactive fiction games to run on desktops. ZIL was derived from MDL which, in turn, was derived from LISP. But ZIL wasn't really a full blown Lisp.



Infocom's original compiler for ZIL, Zorch, was never made publicly available, but there is also an open source compiler, ZILF, which includes a incomplete ZIL language description






share|improve this answer

























  • This answer is quite useful to me since I'm interested in any LISP-like languages especially if they've been used to write substantial and/or commerical programs for 8-bit micros.

    – Curt J. Sampson
    Jun 2 at 13:35






  • 2





    @CurtJ.Sampson Okay, then another not-actual-Lisp non-answer would be Logo. This mostly-educational language was available for quite a number of 8-bit machines.

    – RichF
    Jun 2 at 13:39






  • 1





    @RichF Wow. I just had a scan through the Apple Logo II Reference Manual; I had no idea that Logo was so LISPy, passing code blocks for IF etc. and with even the ability to rewrite its own definitions. That said, it doesn't seem to use the "passing functions to functions" idiom, as ZIL does, that would make it feel truly LISPy to me.

    – Curt J. Sampson
    Jun 2 at 14:33







  • 1





    In fact DR LOGO was included with Amstrad disc-based CPC machines. However, LOGO is a long way sorry of being LISP, despite some great list processing functionality.

    – Mark Williams
    Jun 2 at 16:11






  • 1





    Back to ZIL: further research makes it peretty clear that it is indeed a LISP at its core (it's basically a variant of MDL designed to execute code originally written in MDL with extensions). I am not clear on how much has been removed, but it's looking like it may have been too much to make this a general-purpose LISP.

    – Curt J. Sampson
    Jun 3 at 1:26













6












6








6







The following answer isn't strictly speaking a version of LISP. That's why I didn't add it to the community answer.



ZIL, the Zork Implementational Language, was intended to allow interactive fiction games to run on desktops. ZIL was derived from MDL which, in turn, was derived from LISP. But ZIL wasn't really a full blown Lisp.



Infocom's original compiler for ZIL, Zorch, was never made publicly available, but there is also an open source compiler, ZILF, which includes a incomplete ZIL language description






share|improve this answer















The following answer isn't strictly speaking a version of LISP. That's why I didn't add it to the community answer.



ZIL, the Zork Implementational Language, was intended to allow interactive fiction games to run on desktops. ZIL was derived from MDL which, in turn, was derived from LISP. But ZIL wasn't really a full blown Lisp.



Infocom's original compiler for ZIL, Zorch, was never made publicly available, but there is also an open source compiler, ZILF, which includes a incomplete ZIL language description







share|improve this answer














share|improve this answer



share|improve this answer








edited Jun 2 at 15:40









Curt J. Sampson

411110




411110










answered Jun 2 at 13:10









Walter MittyWalter Mitty

1,200414




1,200414












  • This answer is quite useful to me since I'm interested in any LISP-like languages especially if they've been used to write substantial and/or commerical programs for 8-bit micros.

    – Curt J. Sampson
    Jun 2 at 13:35






  • 2





    @CurtJ.Sampson Okay, then another not-actual-Lisp non-answer would be Logo. This mostly-educational language was available for quite a number of 8-bit machines.

    – RichF
    Jun 2 at 13:39






  • 1





    @RichF Wow. I just had a scan through the Apple Logo II Reference Manual; I had no idea that Logo was so LISPy, passing code blocks for IF etc. and with even the ability to rewrite its own definitions. That said, it doesn't seem to use the "passing functions to functions" idiom, as ZIL does, that would make it feel truly LISPy to me.

    – Curt J. Sampson
    Jun 2 at 14:33







  • 1





    In fact DR LOGO was included with Amstrad disc-based CPC machines. However, LOGO is a long way sorry of being LISP, despite some great list processing functionality.

    – Mark Williams
    Jun 2 at 16:11






  • 1





    Back to ZIL: further research makes it peretty clear that it is indeed a LISP at its core (it's basically a variant of MDL designed to execute code originally written in MDL with extensions). I am not clear on how much has been removed, but it's looking like it may have been too much to make this a general-purpose LISP.

    – Curt J. Sampson
    Jun 3 at 1:26

















  • This answer is quite useful to me since I'm interested in any LISP-like languages especially if they've been used to write substantial and/or commerical programs for 8-bit micros.

    – Curt J. Sampson
    Jun 2 at 13:35






  • 2





    @CurtJ.Sampson Okay, then another not-actual-Lisp non-answer would be Logo. This mostly-educational language was available for quite a number of 8-bit machines.

    – RichF
    Jun 2 at 13:39






  • 1





    @RichF Wow. I just had a scan through the Apple Logo II Reference Manual; I had no idea that Logo was so LISPy, passing code blocks for IF etc. and with even the ability to rewrite its own definitions. That said, it doesn't seem to use the "passing functions to functions" idiom, as ZIL does, that would make it feel truly LISPy to me.

    – Curt J. Sampson
    Jun 2 at 14:33







  • 1





    In fact DR LOGO was included with Amstrad disc-based CPC machines. However, LOGO is a long way sorry of being LISP, despite some great list processing functionality.

    – Mark Williams
    Jun 2 at 16:11






  • 1





    Back to ZIL: further research makes it peretty clear that it is indeed a LISP at its core (it's basically a variant of MDL designed to execute code originally written in MDL with extensions). I am not clear on how much has been removed, but it's looking like it may have been too much to make this a general-purpose LISP.

    – Curt J. Sampson
    Jun 3 at 1:26
















This answer is quite useful to me since I'm interested in any LISP-like languages especially if they've been used to write substantial and/or commerical programs for 8-bit micros.

– Curt J. Sampson
Jun 2 at 13:35





This answer is quite useful to me since I'm interested in any LISP-like languages especially if they've been used to write substantial and/or commerical programs for 8-bit micros.

– Curt J. Sampson
Jun 2 at 13:35




2




2





@CurtJ.Sampson Okay, then another not-actual-Lisp non-answer would be Logo. This mostly-educational language was available for quite a number of 8-bit machines.

– RichF
Jun 2 at 13:39





@CurtJ.Sampson Okay, then another not-actual-Lisp non-answer would be Logo. This mostly-educational language was available for quite a number of 8-bit machines.

– RichF
Jun 2 at 13:39




1




1





@RichF Wow. I just had a scan through the Apple Logo II Reference Manual; I had no idea that Logo was so LISPy, passing code blocks for IF etc. and with even the ability to rewrite its own definitions. That said, it doesn't seem to use the "passing functions to functions" idiom, as ZIL does, that would make it feel truly LISPy to me.

– Curt J. Sampson
Jun 2 at 14:33






@RichF Wow. I just had a scan through the Apple Logo II Reference Manual; I had no idea that Logo was so LISPy, passing code blocks for IF etc. and with even the ability to rewrite its own definitions. That said, it doesn't seem to use the "passing functions to functions" idiom, as ZIL does, that would make it feel truly LISPy to me.

– Curt J. Sampson
Jun 2 at 14:33





1




1





In fact DR LOGO was included with Amstrad disc-based CPC machines. However, LOGO is a long way sorry of being LISP, despite some great list processing functionality.

– Mark Williams
Jun 2 at 16:11





In fact DR LOGO was included with Amstrad disc-based CPC machines. However, LOGO is a long way sorry of being LISP, despite some great list processing functionality.

– Mark Williams
Jun 2 at 16:11




1




1





Back to ZIL: further research makes it peretty clear that it is indeed a LISP at its core (it's basically a variant of MDL designed to execute code originally written in MDL with extensions). I am not clear on how much has been removed, but it's looking like it may have been too much to make this a general-purpose LISP.

– Curt J. Sampson
Jun 3 at 1:26





Back to ZIL: further research makes it peretty clear that it is indeed a LISP at its core (it's basically a variant of MDL designed to execute code originally written in MDL with extensions). I am not clear on how much has been removed, but it's looking like it may have been too much to make this a general-purpose LISP.

– Curt J. Sampson
Jun 3 at 1:26











5














There was a variant of InterLisp for Atari 8-bit systems.



There was Gnosis P-Lisp for Apple II, which was very simple.



There were a number of Lisp implementations for Z-80 running CP/M.



And, straddling the 8/16-bit divide, there was Golden Common Lisp for IBM PC, which ran on 8088 (and runs nicely on my HP 95LX as a result) but actually was a real Common Lisp implementation.



Of course the various 16 bit systems got more “real” Lisp implementations, especially as memory available grew.






share|improve this answer























  • I'm not actually interested in (most?) 16-bit implementations, and this helped me figure out why: "small memory" turns out to be an integral characteristic I'm looking for. So thanks for helping out with that. The two implementations you linked are helpful.

    – Curt J. Sampson
    Jun 3 at 6:07















5














There was a variant of InterLisp for Atari 8-bit systems.



There was Gnosis P-Lisp for Apple II, which was very simple.



There were a number of Lisp implementations for Z-80 running CP/M.



And, straddling the 8/16-bit divide, there was Golden Common Lisp for IBM PC, which ran on 8088 (and runs nicely on my HP 95LX as a result) but actually was a real Common Lisp implementation.



Of course the various 16 bit systems got more “real” Lisp implementations, especially as memory available grew.






share|improve this answer























  • I'm not actually interested in (most?) 16-bit implementations, and this helped me figure out why: "small memory" turns out to be an integral characteristic I'm looking for. So thanks for helping out with that. The two implementations you linked are helpful.

    – Curt J. Sampson
    Jun 3 at 6:07













5












5








5







There was a variant of InterLisp for Atari 8-bit systems.



There was Gnosis P-Lisp for Apple II, which was very simple.



There were a number of Lisp implementations for Z-80 running CP/M.



And, straddling the 8/16-bit divide, there was Golden Common Lisp for IBM PC, which ran on 8088 (and runs nicely on my HP 95LX as a result) but actually was a real Common Lisp implementation.



Of course the various 16 bit systems got more “real” Lisp implementations, especially as memory available grew.






share|improve this answer













There was a variant of InterLisp for Atari 8-bit systems.



There was Gnosis P-Lisp for Apple II, which was very simple.



There were a number of Lisp implementations for Z-80 running CP/M.



And, straddling the 8/16-bit divide, there was Golden Common Lisp for IBM PC, which ran on 8088 (and runs nicely on my HP 95LX as a result) but actually was a real Common Lisp implementation.



Of course the various 16 bit systems got more “real” Lisp implementations, especially as memory available grew.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jun 3 at 1:24









Chris HansonChris Hanson

540310




540310












  • I'm not actually interested in (most?) 16-bit implementations, and this helped me figure out why: "small memory" turns out to be an integral characteristic I'm looking for. So thanks for helping out with that. The two implementations you linked are helpful.

    – Curt J. Sampson
    Jun 3 at 6:07

















  • I'm not actually interested in (most?) 16-bit implementations, and this helped me figure out why: "small memory" turns out to be an integral characteristic I'm looking for. So thanks for helping out with that. The two implementations you linked are helpful.

    – Curt J. Sampson
    Jun 3 at 6:07
















I'm not actually interested in (most?) 16-bit implementations, and this helped me figure out why: "small memory" turns out to be an integral characteristic I'm looking for. So thanks for helping out with that. The two implementations you linked are helpful.

– Curt J. Sampson
Jun 3 at 6:07





I'm not actually interested in (most?) 16-bit implementations, and this helped me figure out why: "small memory" turns out to be an integral characteristic I'm looking for. So thanks for helping out with that. The two implementations you linked are helpful.

– Curt J. Sampson
Jun 3 at 6:07

















draft saved

draft discarded
















































Thanks for contributing an answer to Retrocomputing Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f11192%2fwhat-lisp-compilers-and-interpreters-were-available-for-8-bit-machines%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020