This wiki is out of date, use the continuation of this wiki instead

TRUE

From FenixWiki

Revision as of 17:26, 2 May 2007 by Sandman (Talk | contribs)
Jump to: navigation, search

Definition

INT true

True is a constant integer, equal to the value 1. It is used to state that something is true and not false.

Example

Program example;
Private
    int b = true;
Begin

    if(b == true)
        say("b was true! so b==1");
    else
        say("b was not true! so b!=1");
    end

    Loop
        frame;
    End

End
Personal tools