#Assert
Preprocessor conditional directive
#assert condition
condition
A conditional expression that is assumed to be true
Asserts the truth of a conditional expression at compile time. If condition is false, compilation will stop with an error.
This statement differs from the Assert macro in that #assert is evaluated at compile-time and Assert is evaluated at run-time.
Syntax
#assert condition
Parameters
condition
A conditional expression that is assumed to be true
Description
Asserts the truth of a conditional expression at compile time. If condition is false, compilation will stop with an error.
This statement differs from the Assert macro in that #assert is evaluated at compile-time and Assert is evaluated at run-time.
Example
Const MIN = 5, MAX = 10
#assert MAX > MIN '' cause a compile-time error if MAX <= MIN
#assert MAX > MIN '' cause a compile-time error if MAX <= MIN
Differences from QB
- New to FreeBASIC
See also