class Hello {
        method hello {
                say "Hello, world!";
        }
}

my $hello = Hello.new;
$hello.hello;