Slashdot Mirror


User: mj41

mj41's activity in the archive.

Stories
0
Comments
5
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 5

  1. Re:I can't believe it! on Parrot 1.0.0 Released · · Score: 3, Informative

    The Case for Virtual Register Machines, Brian Davis, Andrew Beatty, Kevin Casey, David Gregg and John Waldron, 12.6.2003, PDF

  2. Re:Perl 6 before end of century? on Parrot 1.0.0 Released · · Score: 2, Informative

    There is Perl 6 release each month.

  3. Re:Benchmarks on Parrot 1.0.0 Released · · Score: 1

    No plans to measure Parrot VM on Q6600 (alive part of shootout.alioth.debian.org). There is related discussion https://alioth.debian.org/forum/message.php?msg_id=181415

  4. Re:The original Parrot was an April Fool's joke on Parrot 1.0.0 Released · · Score: 1

    See Perl 6 and Parrot links - chronological catalogue of more than 500 links. Full Parrot and Perl 6 related history.

  5. Re:VM question on Parrot 1.0.0 Released · · Score: 4, Informative
    chromatic said on reddit.com:

    "It's not so much that the CLR's limitations prevent it from running dynamic languages but that the CLR's limitations require you to invent a lot of your own infrastructure to run dynamic languages. If the CLR in itself assumes that it can resolve all method dispatches (or jump targets or attribute accesses) statically at compile time, you have to invent your own dynamicity atop that. If the CLR does not support first class functions, you have to invent your own approach. If the CLR does not support first-class continuations, you have to invent your own calling structure. Ditto named parameters, optional parameters, default parameters, and whatever other features that the CLR doesn't support.

    I'm not saying that the CLR doesn't support all of those features -- I know that it does support some of them, to some degree. The DLR supports more. The question is whether Turing equivalence (and I hate this argument) is sufficient, or whether you're better off not inventing your own method dispatch system."