[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Expressions can be used as values.



All unary operators take the highest precedence. The precedence of binary operators is indicated by their position in the table. 

The unary operators are:

	Operator	Type of Operation	
		
	-		Unary minus	
	!		One's complement	
		
The binary operators are listed in the following table in their order of precedence. Operators with higher precedence are listed first:

	Operators	Type of Operation	Type Restrictions                                     	
			
	*  /		Multiplicative		Integers				
	+  - 		Additive	integers 	Strings (+ only)			
	< > <= >=	Relational		Integers	
	== !=		Equality			Integers, strings, booleans
	and		Logical AND		Booleans	
			
	or		Logical OR		Booleans	
			
Examples:

count = 3 + 5 * 40
transmit "Hello" + " there"
delay 24 / (7 - 1)

6.

--- StripMime Report -- processed MIME parts ---
multipart/mixed
  application/octet-stream
---