]> git.proxmox.com Git - perlmod.git/blame - test.pl
bump perlmod to 0.4.3-1
[perlmod.git] / test.pl
CommitLineData
e95a2c0a
WB
1#!/usr/bin/env perl
2
3use v5.28.0;
4
5use lib '.';
6use RSPM::Bless;
7
8my $v = RSPM::Bless->new("Hello");
9$v->something();
10my ($a, $b, $c) = $v->multi_return();
11say "Got ($a, $b, $c)";
12my @ret = $v->multi_return();
13say "Got: ".scalar(@ret)." values: @ret";
14
15$v->another(54);