Tagged Questions

Parrot is a virtual machine designed to efficiently compile and execute bytecode for dynamic languages. Initially build for Perl 6, it strive to implement many different languages and provide a compatible cross-language data representation. Parrot currently hosts a variety of language implementations in various stages of completion, including Tcl, Javascript, Ruby, Lua, Scheme, PHP, Python, Perl 6, APL, and a .NET bytecode translator.

learn more… | top users | synonyms

16
votes
4answers
2k views

How does Parrot compare to other virtual machines?

Parrot is the virtual machine originally designed for Perl 6. What technical capabilities does the Parrot VM offer that competing virtual machines such as the Java Virtual Machine (JVM)/Hotspot VM ...
16
votes
7answers
1k views

What exactly is Parrot?

I understand that Parrot is a virtual machine, but I feel like I'm not completely grasping the idea behind it. As I understand, it's a virtual machine that's being made to handle multiple languages. ...
11
votes
3answers
432 views

How do I get started with Perl 6?

I'd like to get your opinion on How to get started with Perl 6? Shall one use Rakudo which is being build on Parrot or still better go with the Pugs implementation? If Rakudo, what is the best way to ...
10
votes
3answers
365 views

What is the release date for Rakudo Star (perl6)? [closed]

If a specific release date is not available (as I suspect it is not), can you provide resources for tracking how close it is to the desired feature set that allows release. I'm not necessarily asking ...
7
votes
3answers
443 views

What is a good VM for developing a hobby language?

I'm thinking about writing my own little language. I found a few options, but feel free to suggest more. JVM Parrot OSA A lot of languages are using the JVM, but unless you write a Java-ish ...
5
votes
2answers
278 views

Is Ruby or other language going to run faster on Parrot?

I just saw that there is a Ruby to Parrot compiler called Cardinal, which can create code to run on Parrot, which is a VM that can run byte-code. How is the performance of Ruby or any language ...
5
votes
2answers
905 views

Do VMs like LLVM or PARROT allow usage of the same library from multiple languages?

Is it possible to use one framework written in one Parrot (LLVM) language in any other Parrot (LLVM) language? (Like usage of .NET Framework from any CLR language)...
4
votes
2answers
144 views

Why to use Parrot (or other VM) if I have an interpreter?

Why should I use VM, like Parrot, for a dynamic language I use (Python, Perl, ...) if I already have an interpreter? What can I potentially gain, for the cost of having different VM between my code ...
4
votes
2answers
214 views

Are there up-to-date Parrot language tutorials?

I'm interested in playing around with the Parrot VM, but all the tutorials (and many of the docs) seem out-of-date. There there any up-to-date tutorials out there in the interwebs?
3
votes
2answers
278 views

Parrot - Can I use it? And how?

I've had an eye on Parrot for a little while. I understand that it's a virtual machine designed to run a variety of dynamic languages, and to allow a degree of interoperability (e.g. calling a Perl ...
3
votes
1answer
246 views

What's the benefit of Parrot VM for end-users?

What's the benefit of the Parrot Virtual Machine for end-users (software developers)? For example, if I could program against Perl or Python directly why would I bother programming for them under ...
2
votes
1answer
158 views

Where is the Parrot documentation?

Parrot documentation exists, but it is scattered all over the web; what aiming-to-be-comprehensive sites there are, are often incomplete with large sections missing (yes, that was an empty language ...
1
vote
1answer
20 views

Can I use Parrot Compiler Tools from installed parrot-devel package on Linux?

I am interested in creating my own language using Parrot VM. I have installed the parrot-devel package along with parrot and dependencies (using Synaptic package manager under Linux Mint 11). I ...
1
vote
3answers
2k views

LLVM, Parrot, JVM, PyPy + python

What is the problem in developing some languages, for example python for some optimized techniques with some of LLVM / Parrot. PyPy, LLVM, Parrot are the main technologies for common platform ...
0
votes
2answers
21 views

Parrot VM and Static Languages

Can you create a statically typed language in Parrot VM or does it have to be dynamically typed?
0
votes
2answers
229 views

Does Parrot have a database interface or API?

A quick search gave me this announcement of Parrot DBDI from January 2004 and a dbdi-dev mailing list which appears to be long dead. Is Parrot DBDI still being developed? Is anyone working on a ...