Difference between revisions of "Not"

From MultiCharts
Jump to navigation Jump to search
m (Reverted edits by 176.8.90.7 (talk) to last revision by 194.84.116.138)
Line 1: Line 1:
 
Used in True/False statements: '''negative'''   
 
Used in True/False statements: '''negative'''   
  
http://www.buyxanaxonlinepill.com/ buy xanax no prescription - order xanax no rx
+
==== Example ====
 +
<syntaxhighlight>Condition1 = True;
 +
 
 +
Condition2 = Not Condition1;
 +
 
 +
Assigns to Condition2 value opposite to Condition1</syntaxhighlight>
 +
 
 +
[[Category:Comparisons and Loops]]

Revision as of 12:34, 13 February 2012

Used in True/False statements: negative

Example

Condition1 = True; 

Condition2 = Not Condition1; 

Assigns to Condition2 value opposite to Condition1