projects
/
p5sagit/Function-Parameters.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
version 1.0401
[p5sagit/Function-Parameters.git]
/
t
/
foreign
/
Method-Signatures
/
simple.plx
1
package Foo;
2
3
use strict;
4
use warnings;
5
6
use Function::Parameters;
7
8
method echo($msg) {
9
return $msg
10
}
11
12
print Foo->echo(42);