Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
SqueakTutorials
Last updated at 8:42 am UTC on 30 August 2019
 SqueakHelp subclass: #SqueakTutorials
	instanceVariableNames: ''
	classVariableNames: ''
	poolDictionaries: ''
	category: 'Help-Squeak-Project'


SqueakTutorials is a CustomHelp class. The content is in class methods such as
SqueakTutorials class>>introduction


introduction
	"This method was automatically generated. Edit it using:"
	"SqueakTutorials edit: #introduction"
	^HelpTopic
		title: 'Introduction'
		contents: 
'Here you will some short tutorials on how to use Squeak for daily tasks. Feel free to add your own.!' readStream nextChunkText


You may create your own tutorial by subclassing SqueakTutorials and follow the example of the
current tutorials:

 SqueakTutorials subclasses
         {SqueakTutorialsOnXML . SqueakTutorialsOnImage . SqueakTutorialsCommandKey}