Skip to content

Instantly share code, notes, and snippets.

@gfldex
Created October 6, 2023 22:15
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 gfldex/eab45100fdf215954f275028a92c1c25 to your computer and use it in GitHub Desktop.
Save gfldex/eab45100fdf215954f275028a92c1c25 to your computer and use it in GitHub Desktop.
sub a() { say $*foo; b() }
sub b() { return if $++ ≥ 3; a(); my Any:D $*foo = 42; }
my $*foo = 10;
a();
say $*foo;
# OUTPUT:
# 10
# (Any)
# (Any)
# (Any)
# 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment