Servertec   >=
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
iMake
Make Files
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
Statements
Macros
Sales
Legal
Feedback

 

Compares if one expression is greater than or equals another expression.

Syntax

    expression >= expression

Notes

    Expressions
    Result
    first expression < second expression False
    first expression > second expression True
    first expression = second expression True

Example

    !if WORDSIZE >= 64
        !include "64bit.inc"
    !endif
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:18:21 EST 1999