mirror of
git://git.proxmox.com/git/perlmod.git
synced 2025-01-22 02:04:05 +03:00
e95a2c0a23
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
16 lines
270 B
Perl
16 lines
270 B
Perl
#!/usr/bin/env perl
|
|
|
|
use v5.28.0;
|
|
|
|
use lib '.';
|
|
use RSPM::Bless;
|
|
|
|
my $v = RSPM::Bless->new("Hello");
|
|
$v->something();
|
|
my ($a, $b, $c) = $v->multi_return();
|
|
say "Got ($a, $b, $c)";
|
|
my @ret = $v->multi_return();
|
|
say "Got: ".scalar(@ret)." values: @ret";
|
|
|
|
$v->another(54);
|