Re: [Pharo-users] Creating a new method

2017-10-06 Thread Stephane Ducasse
Hi Dirk have a look at - one one coding the counter http://rmod-pharo-mooc.lille.inria.fr/MOOC/Videos/W1/C019-W1S-Videos-Redo-Counter-Traditional-FR-v4.mp4 (we should have the english versions now) C019-W1-Videos-Redo-CodingCounterInDebugger-FR-V2-HD_720p_4Mbs.m4v you can find the subtitl

Re: [Pharo-users] Creating a new method

2017-10-06 Thread Ben Coman
On Fri, Oct 6, 2017 at 6:15 PM, Dirk Olmes wrote: > Hi, > > I may be asking an absolute noob question but I was unable to find any > useful hints on google ... > > I often find myself writing methods that do not yet exist when > implementing other methods, e.g. when I'm writing the implementation

Re: [Pharo-users] Creating a new method

2017-10-06 Thread Peter Uhnák
What I often do is that I write a test and then I just execute the code. When it runs into the non-existent method, the debugger offers a button "create" method. Alternatively I do open a second browser (clicking on "scoped" in the current one or like that (or doubleclicking on a method to get the

[Pharo-users] Creating a new method

2017-10-06 Thread Dirk Olmes
Hi, I may be asking an absolute noob question but I was unable to find any useful hints on google ... I often find myself writing methods that do not yet exist when implementing other methods, e.g. when I'm writing the implementation of methodA I'm calling out to methodB. What's the easiest way