PIR provides a set of abstractions that allow the programmer to ignore certain redundancies in the Parrot bytecode and quickly write code that adheres to the complexities of Parrot, such as the calling conventions.
PIR provides both type abstraction and polymorphism to some degree. For example, the "+" operator can be used with int, num or both:
The calling conventions in Parrot are complex, but all of that complexity can be hidden by using PIR directives:
Each of the directives prefixed with a "." expands to the required Parrot bytecode, but does not directly represent any fundamental Parrot operation.
The hello world program in PIR is
If the program is saved as hello.pir, it can be compiled and executed with this command: parrot hello.pir