Functions

/Users/garethloy/Musimathics/Musimat1.2/MusimatTutorial/B0104.cpp File Reference

#include "MusimatTutorial.h"

Go to the source code of this file.

Functions

 MusimatTutorialSection (B0104)

Function Documentation

MusimatTutorialSection ( B0104   )

Definition at line 2 of file B0104.cpp.

                              {
        Print("*** B.1.4 Constants ***");
        /*****************************************************************************
         
         B.1.4 Constants
         
         A constant is any number whose value does not change. The number 3 is a constant Integer. The 
         number 3.14159 . . . is a constant Real.
         
         Musimat also predefines two constants, True and False, and gives them integer numeric 
         values of 1 and 0, respectively.
         
         *****************************************************************************/

        Print("True=", True);
        Print("False=", False);

}