Anyway, the two problems that pop into my head, even though I am totally unqualified to analyze the problem, are that Io doesn't use classes (Io site says it is more powerful than mere classes and can implement classes in Io)

The fact that Io doesn't use classes is largely irrelevant, the Io->Parrot compiler will decide what it needs to represent Io structures in, which will likely be Parrot PMCs of some kind, but Io doesn't need to care either way. There is no need for there to be a one-to-one mapping of language level "things" to VM level "things". I can't seem to find any docs on Io's VM instruction table, but I imagine it is quite small. The YARV (Yet Another Ruby VM) instruction table is a good example of this. The first ~50 instructions are all that are needed to run Ruby, all other instructions after that are just optimizations.

Oh, and incidentally Question 2: Io talks about being good for embedded.

In this context they mean embedding Io into your own (C/C++/etc) application, for use as a scripting language. However, there is nothing to stop you from running that application on an embedded platform (PDA, cell phone, etc). In fact, Io is ideally suited for just this type of application since it has such a small footprint.

-stvn

In reply to Re^2: Interaction between languages in Parrot by stvn
in thread Interaction between languages in Parrot by ruoso

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.