📄️ Collections
TODO
📄️ Where to Learn Pharo?
The following pages of this guide will teach you the basics of Pharo programming language and environment that are necessary to use Cormas.
📄️ Basics of Pharo Environment
In this short guide we will teach you how to use navigate the Pharo environment and use 4 main tools: Playground, Inspector, System Browser, and Debugger. We will also teach you how to search for methods and classes with Spotter and how to browse implementors and senders of different methods and classes.
📄️ Running Code in Pharo Playground
Before starting, make sure you already have Pharo installed. If not, follow the Installing Pharo section from our How to Install Cormas tutorial.
📄️ Pharo Syntax in a Nutshell
Pharo is a live, object-oriented language. Everything is an object, and you send messages to objects to make them do things. This short guide covers only the essentials you need to read and write the code for Cormas models.