Z^3 Language Documentation

From ZCubes Wiki
Jump to navigation Jump to search

Operators

@: Function Apply Operator

~: Transpose Operator

↑ and ↓: Ascending and Descending Operator

⧓,⧒,⧒ and ⋈: Between Operators

√: Square Root, Cube Root, Fourth Root and Nth Root Operators

	√(3+34)
	∛(27.01)
	√√64
	ROOTNTH(1..10,4) 
		// root is first parameter
	NTHROOT(1..10,4)
		// root is second parameter
	
	NTHROOT(1..100,2)
	NTHROOT(1..100,4)
	ROOTNTH(1..100,2)
	ROOTNTH(1..100,4)