File: Filter4.pm

package info (click to toggle)
libspiffy-perl 0.21-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 256 kB
  • ctags: 99
  • sloc: perl: 1,067; makefile: 50
file content (21 lines) | stat: -rw-r--r-- 204 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package Filter4;
use Spiffy -Base;
# comment

sub foo {
    my $x = $self->$bar;
}

my sub bar {
    if (1) {
        my $y = 1;
    }
}

sub baz() {
    my $z = 1;
}

my sub bam {
    $self->$bar(42);
}