Skip to content

Instantly share code, notes, and snippets.

@antoniogamiz
Last active July 5, 2019 11:53
Show Gist options
  • Save antoniogamiz/b13af31cca6185cbfa20a9abf75e2c48 to your computer and use it in GitHub Desktop.
Save antoniogamiz/b13af31cca6185cbfa20a9abf75e2c48 to your computer and use it in GitHub Desktop.
Weird things happening here
use v6.c;
use Perl6::TypeGraph;
my $tg = Perl6::TypeGraph.new-from-file;
# This line freezes the execution.
say $tg.types<Any>; # with BagHash and whatever typename you use also happens
# This line not.
$tg.types<Any>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment