I (Tyler) wrote:
> class ThingMaker() :any {
>
> # This is a private method.
> to bar() { ... }
>
> def Thing() {
>
> # This is a public method.
> to foo() { ... }
> }
> }
Ooops. Make that:
class ThingMaker() :any {
# This is a private method.
to bar() { ... }
def Thing {
# This is a public method.
to foo() { ... }
}
}
Tyler