Difference between revisions of "Not"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Used in True/False statements: '''negative''' ==== Example ==== <syntaxhighlight>Condition1 = True; Condition2 = Not Condition1;</syntaxhighlight> Assigns to [[Conditio...")
 
Line 4: Line 4:
 
<syntaxhighlight>Condition1 = True;  
 
<syntaxhighlight>Condition1 = True;  
  
Condition2 = Not Condition1;</syntaxhighlight>
+
Condition2 = Not Condition1;  
  
Assigns to [[Condition2]] value opposite to [[Condition1]]
+
Assigns to Condition2 value opposite to Condition1</syntaxhighlight>
  
 
[[Category:Comparisons and Loops]]
 
[[Category:Comparisons and Loops]]

Revision as of 12:40, 20 January 2012

Used in True/False statements: negative

Example

Condition1 = True; 

Condition2 = Not Condition1; 

Assigns to Condition2 value opposite to Condition1