Inline PIR ( Q:PIR {...} )
- Q:PIR { ... } allows PIR to be inlined
Q:PIR { load_bytecode 'PGE.pbc' };
my $name := 'Fred';
Q:PIR {
$P0 = find_lex '$name'
say $P0
};
- If the PIR contains a '}', use double-braces
Q:PIR {{
print "\x{ab}Hello\x{bb}"
}}