Dolphin Smalltalk - adding method
- by bialpio
Hi, I am trying to create a custom class in Dolphin Smalltalk. When I open the Workspace, type in and evaluate the code:
Object subclass: #Sudoku
instanceVariableNames: 'board'
classVariableNames: ''
poolDictionaries: ''
category: 'JiPP SudokuSolver'.
everything works fine and the class is created and visible from Class Browser.
The problem is, I want to add custom member method to this class, but without using Class Browser. Is it possible from the Workspace? I want to have one file with all the source code, so I don't have to worry about saving entire image.