Skip to content

Instantly share code, notes, and snippets.

@salortiz
Created March 31, 2016 23:20
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 salortiz/202c0c871ddca049856e10a2f01664d1 to your computer and use it in GitHub Desktop.
Save salortiz/202c0c871ddca049856e10a2f01664d1 to your computer and use it in GitHub Desktop.
explicitly-manage is evil
use v6;
use NativeCall;
my $var1 = "Hola a todos";
my $var2 = "Hola a todos";
sub foo($any) {
explicitly-manage($any);
}
dd $var2;
foo($var1);
dd $var2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment