in reply to Re^2: Star, not 1.0. April, not March.
in thread rakudo pre 1.0?

Because I'm suffering from perl5's class and object system. I'm dreaming about owning a language with explicit grammar (or compile-time check) of attribute overloading.

Replies are listed 'Best First'.
Re^4: Star, not 1.0. April, not March.
by educated_foo (Vicar) on Dec 19, 2009 at 13:59 UTC
    Given that Ruby doesn't really have a "compile time," you're looking in the wrong direction.
      Thanks. So what about python?
        Same deal, I think. If the language has a hook for undefined attributes and methods (e.g. AUTOLOAD/method_missing), you have to sacrifice compile-time guarantees. IIRC Python has this.