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

class Main {
    
    say '1..2';

    my $x = 0;
    if $x != 0 {
        print 'not '
    };
    say 'ok 1 - ', $x;

    my $x = 1;
    if $x != 1 {
        print 'not '
    };
    say 'ok 2 - ', $x;

}