summaryrefslogtreecommitdiffstats
path: root/t/anon.t
blob: 844fb979145e39d2b152292ceb34cee107ac9a70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

use Fun;

my $fun = fun ($x, $y) { $x * $y };

is($fun->(3, 4), 12);

done_testing;