Purpose
Compares the values of two expressions of the same or similar types.
If the values are the same, TRUE is returned; otherwise, FALSE is returned.
Syntax
Expression1 = Expression2
Example
Sub Main()
Dim num as Integer
num = 5
If num = 5 Then
Print "The value of 'num' is equal to 5"
|