00001 #include "MusimatTutorial.h" 00002 MusimatTutorialSection(B0106) { 00003 Print("*** B.1.6 Reserved Words ***"); 00004 /***************************************************************************** 00005 00006 B.1.6 Reserved Words 00007 00008 For the language to be unambiguous, we must reserve the meaning of certain words and symbols. 00009 Reserved words are distinguished by an initial capital letter. 00010 Musimat reserved words include If, While, Do, For, Repeat, Else, Halt, Real, Integer, 00011 Return. Later sections will describe their use. 00012 00013 Some other symbols are also reserved. These symbols can't be used for anything but their 00014 designated meaning. We'll meet up with them as we go along. 00015 00016 *****************************************************************************/ 00017 } 00018 00020 /* $Revision: 1.2 $ $Date: 2006/09/05 06:32:25 $ $Author: dgl $ $Name: $ $Id: B0106.cpp,v 1.2 2006/09/05 06:32:25 dgl Exp $ */ 00021 // The Musimat Tutorial © 2006 Gareth Loy 00022 // Derived from Chapter 9 and Appendix B of "Musimathics Vol. 1" © 2006 Gareth Loy 00023 // and published exclusively by The MIT Press. 00024 // This program is released WITHOUT ANY WARRANTY; without even the implied 00025 // warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00026 // For information on usage and redistribution, and for a DISCLAIMER OF ALL 00027 // WARRANTIES, see the file, "LICENSE.txt," in this distribution. 00028 // "Musimathics" is available here: http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=10916 00029 // Gareth Loy's Musimathics website: http://www.musimathics.com/ 00030 // The Musimat website: http://www.musimat.com/ 00031 // This program is released under the terms of the GNU General Public License 00032 // available here: http://www.gnu.org/licenses/gpl.txt 00033