update foreign tests
[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);