
In an attempt for non-technical people to be able to manage their own Smalltalk system, the whole system was designed using small building blocks called objects. Smalltalk also introduced the now widely used term "Object Oriented Programming". Smalltalk could

The Smalltalk software system can be divided into two major parts, the Virtual Machine and the Virtual Image. The Virtual Machine (VM) is the machine dependent part whereas the Virtual Image contains a collection of all the objects of the entire Smalltalk system. Most programming systems separate the program code from the program state, in which case the program logic is written and stored in text files and the program state and data is stored in a database. Smalltalk combines the data (objects), code (classes) and Integrated Development Environment (ide), and stores everything in the Virtual Image file. Whenever a Virtual Image is loaded by a Virtual Machine, it will resume the state it was in when the image was saved. As a programming language, the Smalltalk syntax is - as the name suggests - very minimal. Smalltalk only has 6 reserved keywords and the syntax is designed to resemble the normal English language rather than common coding languages, making it relatively easy to learn. Smalltalk was probably one of the first to move away from the mainframe accessed by computer terminals or "centralized computing" to embrace the then still very much in its infancy "personal computing". In recent years software has become more centralized again through web applications, because systems need to be available from anywhere at anytime from any device. Smalltalk with web frameworks like Seaside, AIDA/Web and Iliad seems to have re-gained some of the spotlight it lost since the 70's.
If you want to find out more, have a look at Wikipedia's description of Smalltalk, browse this site for books, discussion forums, user groups or simply try one (or more) Smalltalk implementations!
ANSI Smalltalk was ratified in 1998 and represents the standard version of Smalltalk (download a draft of the ANSI standard document)
Other Smalltalk links: smalltalk.org, goodstart.com, wikibooks.org