pharo-spec / Spec

Spec is a framework in Pharo for describing user interfaces.
MIT License
62 stars 63 forks source link

Better SpApplication>>start comment #1426

Closed Ducasse closed 1 year ago

Ducasse commented 1 year ago
SpApplication>>start
    "This method is a hook automatically invokedOverride this to start your application.
        Pay attention that this is your responsibility to configure the presenter you are opening
        using the message application: so that it knows its application.
        Here is a possible definition
        start 
             MyPresenter new 
                  application: self;
                  open
      "