Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Created September 15, 2013 09:02
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 hoelzro/6569041 to your computer and use it in GitHub Desktop.
Save hoelzro/6569041 to your computer and use it in GitHub Desktop.
sub my-sub() {
my $indent := ($*TOP ?? 0 !! 1);
my $*TOP := 0;
ok($indent == 0);
}
my $*TOP := 1;
plan(1);
my-sub();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment