In GNU Smalltalk 80 it is possible to write smalltalk code in your own plain text editor of personal choice.
Therefore, it is very important to debug the code.
First you save the file as txt File. Then you open the file from the programmers text editor with the "Tools". Here the tool - link C/programme/GNU/gnu smalltalk/gst.exe. The code is running. The debug option is not included. Under these circumstances programming is not possible. There must be a "debug" option to activate.
My question is: how to include that debug option? Normally the smalltalk code is debugged first.
Different smalltalks target different user groups. For learning smalltalk, GNU is a bad choice. Smalltalk is a very simple language with a very large library and a really integrated development environment. Your preference in text editor is not important for this phase (and as you might find, nor any other). You will spend much more time reading and navigating code than typing in new code or changing existing code. Squeak and Pharo are two open source implementations with decent browsers and debuggers
GNU Smalltalk includes tools for debugging. It implements a Debugger class as mentioned in Smalltalk 80: the language within
DebugTool.st
. Other classes mentioned alongsideDebugger
are not necessarily implemented, perhaps because they relate to GUI operations.Instead, GNU Smalltalk provides the MiniDebug command line debugger for use with GNU Smalltalk or when the IDE is not available. It is more or less a rudimentary subset of GDB.
Loading MiniDebugger
A simple way to use it is read the file into gst:
Note that the location of
MiniDebugger.st
is typical for Ubuntu 16.04. Other operating systems may put the file in a different place.MiniDebugger Hello World
A hello world example of the MiniDebugger is:
The entry of
c
at the(debug)
prompt is for 'continue'. Other options will be displayed by typingh
(or any other invalid command).Making a Debugging Image
Once MiniDebugger is loaded into a gst REPL, an image containing the debugger can be created:
and later reloaded when starting
gst
(this assumes 'myDebuggerImage.im' is located in the current directory or in another placegst
looks by default):Setting a Breakpoint
The MiniDebugger will then appear any time the control flow encounters
Object:halt
. For example if I have the file:Then: