Skip to content

Instantly share code, notes, and snippets.

@lucs
Created April 1, 2023 15:55
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 lucs/bb2613fa3b279d1a1fea85f35f4f7f89 to your computer and use it in GitHub Desktop.
Save lucs/bb2613fa3b279d1a1fea85f35f4f7f89 to your computer and use it in GitHub Desktop.
my %h1 = s => "x";
my %h2 = s => "x";
my $s = %h1<s>;
%h1<s> = / <$s> /;
say "x" ~~ %h1<s>;
%h2<s> = / <{%h2<s>}> /;
say "Will hang, right after printing this…";
say "x" ~~ %h2<s>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment