Is there a way to create perl source code, if I have the opcode?
For example
perl -MO=Concise -e "print 123"
will output the opcode:
6 <@> leave[1 ref] vKP/REFC ->(end)
1 <0> enter ->2
2 <;> nextstate(main 1 -e:1) v:{ ->3
5 <@> print vK ->6
3 <0> pushmark s ->4
4 <$> const[IV 123] s ->5
I would like to reverse this somehow.