00001 #include "MusimatTutorial.h" 00002 MusimatTutorialSection(B0104) { 00003 Print("*** B.1.4 Constants ***"); 00004 /***************************************************************************** 00005 00006 B.1.4 Constants 00007 00008 A constant is any number whose value does not change. The number 3 is a constant Integer. The 00009 number 3.14159 . . . is a constant Real. 00010 00011 Musimat also predefines two constants, True and False, and gives them integer numeric 00012 values of 1 and 0, respectively. 00013 00014 *****************************************************************************/ 00015 00016 Print("True=", True); 00017 Print("False=", False); 00018 00019 } 00020 00022 /* $Revision: 1.2 $ $Date: 2006/09/05 06:32:24 $ $Author: dgl $ $Name: $ $Id: B0104.cpp,v 1.2 2006/09/05 06:32:24 dgl Exp $ */ 00023 // The Musimat Tutorial � 2006 Gareth Loy 00024 // Derived from Chapter 9 and Appendix B of "Musimathics Vol. 1" � 2006 Gareth Loy 00025 // and published exclusively by The MIT Press. 00026 // This program is released WITHOUT ANY WARRANTY; without even the implied 00027 // warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00028 // For information on usage and redistribution, and for a DISCLAIMER OF ALL 00029 // WARRANTIES, see the file, "LICENSE.txt," in this distribution. 00030 // "Musimathics" is available here: http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=10916 00031 // Gareth Loy's Musimathics website: http://www.musimathics.com/ 00032 // The Musimat website: http://www.musimat.com/ 00033 // This program is released under the terms of the GNU General Public License 00034 // available here: http://www.gnu.org/licenses/gpl.txt 00035