Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/perl
- use 5.016;
- use warnings;
- use strict;
- our $x = 5;
- {
- local $x = 10;
- sub x() {
- say $x;
- }
- }
- x();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement