- Joined
- Jul 31, 2017
- Messages
- 500
Code:
If Not 1=2 Then Print "SHOULDN'T THIS BE TRUE?"
won't print the text. Why? Because "Not 1" evaluates to 0 first, then "0=2" is evaluated, which is false.
Am I getting old or was this always like that in basic-like languages? I'm really confused