The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
class Stupid::Class {
    has $.attrib is rw;
    method setter($x) { $.attrib = $x; }
    method getter { $.attrib };
}

# vim: ft=perl6