[svn:parrot] r48511 - trunk/examples/languages/squaak/doc

barney at svn.parrot.org barney at svn.parrot.org
Sun Aug 15 10:53:46 UTC 2010


Author: barney
Date: Sun Aug 15 10:53:46 2010
New Revision: 48511
URL: https://trac.parrot.org/parrot/changeset/48511

Log:
Rectified error: installable_squaak compiles to PIR, not PBC.

Modified:
   trunk/examples/languages/squaak/doc/tutorial_episode_1.pod

Modified: trunk/examples/languages/squaak/doc/tutorial_episode_1.pod
==============================================================================
--- trunk/examples/languages/squaak/doc/tutorial_episode_1.pod	Sun Aug 15 10:40:47 2010	(r48510)
+++ trunk/examples/languages/squaak/doc/tutorial_episode_1.pod	Sun Aug 15 10:53:46 2010	(r48511)
@@ -53,14 +53,14 @@
 
 =head2 Squaak: A Simple Language
 
-The case study language is named Squaak. For that language we will be implementing on Parrot
-a full-fledged compiler that can compile a program from source into
-Parrot Byte Code (PBC) or run a Squaak program immediately. The compiler can
-also be used as a command-line interpreter for Squaak.
-
-Squaak demonstrates some common
-language constructs, but at the same time is lacking some other, seemingly
-simple, features. For instance, our language will not have return, break or
+The case study language is named Squaak. We will be implementing on Parrot
+a full-fledged compiler that can compile a Squaak program from source into
+Parrot Intermediate Representation (PIR) or run a Squaak program immediately.
+The compiler can also be used as an interactive interpreter, REPL, for Squaak.
+
+Squaak demonstrates some common language constructs,
+but is lacking some other, seemingly simple, features.
+For instance, our language will have no return, break or
 continue statements (or equivalents in your favorite syntax).
 
 Squaak has the following features:


More information about the parrot-commits mailing list