parrotcode: Parrot's confusing opcodes made easy | |
Contents | Examples |
examples/assembly/hello-dwim.pasm - Parrot's confusing opcodes made easy
% ./parrot examples/assembly/hello-dwim.pasm
The first time you run this program
.sub _main
.include "DWIM.imc"
print "The answer is\n"
add $I0, 20, 23
dec $I0
print $I0
print "\nsay's Parrot!\n"
end
.end
the module replaces all the unsightly opcodes from your source file with the new DWIM comment: # DWIM
and runs normally.
The code continues to work exactly as it did before, but now it looks like this:
.sub _main
.include "DWIM.imc"
# DWIM "The answer is\n"
# DWIM $I0, 20, 23
# DWIM $I0
# DWIM $I0
# DWIM "\nsay's Parrot!\n"
# DWIM
.end
|