ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
405 B

  1. Operator Precedence
  2. 01. Exponentiation (^)
  3. 02. Unary identity and negation (+, -)
  4. 03. Multiplication and division (*, /)
  5. 04. Integer division (\)
  6. 05. Modulus arithmetic (MOD)
  7. 06. Addition and subtraction (+, -), string concatenation (+)
  8. 07. String concatenation (&)
  9. 08. Arithmetic bit shift (<<, >>)
  10. 09. All comparison operators (=, <>, <, <=, >, >=, Like)
  11. 10. NOT
  12. 11. AND
  13. 12. OR
  14. 13. XOR
  15. 14. EQV
  16. 15. IMP