Servertec ||
M E N U

Content
Introduction
Release Notes
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Referance Manual
Conventions
Templates
Constants
Identifiers
Operators
Expression [( )]
Unary Not [!]
Unary Plus [+]
Unary Minus [-]
Stringizing [#]
Charizing [#@]
1's Complement [~]
Multiplication [*]
Division [/]
Modulus [%]
Addition [+]
Subtraction [-]
Concatenation [##]
Bit Left Shift [<<]
Bit Right Shift [>>]
Bit And [&]
Bit Or [|]
Bit Xor [^]
Less Than [<]
Greater Than [>]
Less Than
Or Equal To [<=]

Greater Than
Or Equal To [>=]

Equal To [==]
Not Equal To [!=]
Logical And [&&]
Logical Or [||]
Logical Xor [^^]
Sequence [,]

Directives
iPP
Legal
Feedback

 


Compares expressions and returns True if either expression is True.

Syntax

expression or expression

Notes

First Expression
Second Expression
Result
True True True
True False True
False True True
False False False

Example

#if VERSION == "1.0.0" || defined(USECONSTANTS)
    #include "constants.inc"
#endif
top of page
Built with iScript Copyright © 1997-1998 Servertec. All rights reserved.
Last Modified: Tue Jun 30 00:17:54 PDT 1998