Changes between Version 14 and Version 15 of squeak_faq_new


Ignore:
Timestamp:
03/25/2015 11:57:27 AM (9 years ago)
Author:
fabio.niephaus
Comment:

Merge and improve introduction

Legend:

Unmodified
Added
Removed
Modified
  • squeak_faq_new

    v14 v15  
    55== Documentation ==
    66
    7 === Where do I find good introductory literature for !Squeak/Smalltalk? ===
     7=== Where do I find good documentation and introductory literature for !Squeak/Smalltalk? ===
    88
    9 The book [http://www.squeakbyexample.org/ Squeak by Example] is a good starting point. Especially, the book explains the most important tools, the morphic framework and important concepts, such as messages.
    10 
    11 In the [http://wiki.squeak.org/squeak/792#Morphic morphic wiki] you can find tutorials how to work with morphic and squeak.
    12 
    13 There are also many books available for free: An overview can be found here: [http://stephane.ducasse.free.fr/FreeBooks.html Stephane Ducasse: Free Books]
    14 
    15 We also created some [https://www.hpi.uni-potsdam.de/hirschfeld/trac/SqueakCommunityProjects/wiki/squeak_screencasts screencasts] explaining how to work with squeak.
    16 
    17 === Where do I find a good documentation? ===
    18 
    19 For most of the classes you can view the documentation directly in the browser. The "?" Button between class and instance shows class comments.
     9In most cases, you do not necessarily need a documentation, because you can search and browse through the entire source code within your Squeak image. Just use the search on the top right to find what you are looking for. The majority of classes also come with class comments that you might find helpful. You can access these by clicking the `?` button between `instance` and `class` in your browser.
    2010
    2111Furthermore, we recommend the following websites:
    2212
    23 * [http://squeakbyexample.org/ Squeak by Example]
     13* [http://squeakbyexample.org/ Squeak by Example] (for more free books visit [http://stephane.ducasse.free.fr/FreeBooks.html Stephane Ducasse: Free Books])
    2414
    25 * [http://static.squeak.org/tutorials/morphic-tutorial-1.html Morphic Tutorial]
     15* [http://wiki.squeak.org/squeak/5699 Terse guide to Squeak]
    2616
    27 * [http://wiki.squeak.org/squeak/30 Squeak-Wiki]
     17* [http://wiki.squeak.org/squeak Squeak Swiki]
    2818
    2919* [https://www.hpi.uni-potsdam.de/hirschfeld/trac/SqueakCommunityProjects/wiki/squeak_screencasts Squeak Screencasts]
    3020
    31 * [http://wiki.squeak.org/squeak/5699 Terse guide to Squeak]
     21* [http://wiki.squeak.org/squeak/792#Morphic Morphic Tutorials]
     22
     23* [http://static.squeak.org/tutorials/morphic-tutorial-1.html Tutorial: Fun with the Morphic Graphics System]
    3224
    3325== Smalltalk Syntax ==