true.bmx 200 B

12345678910111213
  1. Rem
  2. True is a Constant Integer assigned the value 1.
  3. End Rem
  4. Print "True="+True
  5. If True
  6. Print "This line will always be executed"
  7. EndIf
  8. If Not True
  9. Print "This line will never be executed"
  10. EndIf