summaryrefslogtreecommitdiff
path: root/lib/perl5db/t/with-subroutine
blob: b1d70fe8bb304075d021a3284ba3f4098ec4635a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use strict;
use warnings;

my $x = 'hello world';

print "$x\n";

back();

exit;

sub back {
    print "hello back\n";
}