Skip to content

Instantly share code, notes, and snippets.

@masak

masak/snippet.p6 Secret

Created December 13, 2014 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masak/fbc45fdb1fa7861f8fd4 to your computer and use it in GitHub Desktop.
Save masak/fbc45fdb1fa7861f8fd4 to your computer and use it in GitHub Desktop.
The example with the substitution
my $greeting = Q.valToNode("OH HAI");
Q.codeToNode({
say $s;
sub foo($s) {
say $s;
}
foo("two!");
}.subst(
'$s' => $greeting,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment