projects
/
p5sagit/lib-with-preamble.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8092d31476e6e1b2ffcbeef83e45be526fa64267
[p5sagit/lib-with-preamble.git]
/
t
/
lib
/
my_given_example.pm
1
package my_given_example;
2
3
sub example_sub {
4
state $foo = $_[0];
5
}
6
7
sub my_file { __FILE__ }
8
sub my_line { __LINE__ }
9
10
1;