diff options
Diffstat (limited to '')
-rw-r--r-- | feature-tests/test.sub | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/feature-tests/test.sub b/feature-tests/test.sub new file mode 100644 index 0000000..350e89d --- /dev/null +++ b/feature-tests/test.sub @@ -0,0 +1,7 @@ +{ + 'moo' => sub { print "Moo" }, + 'hello' => sub { print join(", ", @_) }, + 'inp' => sub { print "input is : ", _input(); }, +}; + + |