Project

General

Profile

Arithmetic operators » History » Revision 4

Revision 3 (Per Amundsen, 12/29/2018 09:11 AM) → Revision 4/5 (Paul Janson, 12/13/2019 12:28 PM)

h1. Arithmetic operators 

 | Addition 
  	
 Subtraction 
  	
 Multiplication 
  	
 Division 
 Floor Divide 
  	
 Modulo 
  	
 Power 
 Bitwise AND 
   	
  | a + b 
 a - b 
 a * b 
 a / b 
 a // b 
 a % b 
 a ^ b 
  
 a & b 
  | 

 Note: // can be used in $calc but not /var. & can be used in /var but not $calc