-
-
Notifications
You must be signed in to change notification settings - Fork 9
Less Than Meta Expression
IsaacShelton edited this page Mar 21, 2022
·
1 revision
Gets whether one transcendent value is less than another. Results in a value of either true
or false
.
name < "John"
This table shows what type is used to compare the two transcendent values
(A < B) compared as... | A = Integer Value | A = Floating Point Value | A = String Value |
---|---|---|---|
B = Integer Value | Integer | Floating Point | Integer |
B = Floating Point Value | Floating Point | Floating Point | Floating Point |
B = String Value | Integer | Floating Point | String |
See meta expressions for more meta expressions