import some (modified) MS tests
[p5sagit/Function-Parameters.git] / t / foreign / Method-Signatures / func.t
CommitLineData
633048d5 1#!perl
2use strict;
3use warnings FATAL => 'all';
4
5use Test::More tests => 1;
6
7use Function::Parameters qw(:strict);
8
9fun echo($arg) {
10 return $arg;
11}
12
13is echo(42), 42, "basic func";