The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use v6-perlito;

class Other {
    method subr( $a, $b ) { $a + $b };
}

class Other {
    method subr2( $a, $b, $c ) { $a + $b + $c };
}

class Main {
    
    say '1..2';

    my $other = Other.new();

    my $x = 0;
    $x = $other.subr( 1, 2 );
    if $x != 3 {
        print 'not '
    };
    say 'ok 1 - ', $x;



    $x = 0;
    $x = Other.subr2( 1, 2, 4 );
    if $x != 7 {
        print 'not '
    };
    say 'ok 2 - ', $x;

}