NAME
	sqrt - Square root

SYNTAX
	float sqrt(float f);
	or
	int sqrt(int i);

DESCRIPTION
	Return the square root of f, or in the second case, the square root
	truncated to the closest lower integer.

KEYWORDS
	float, int

SEE ALSO
	math/pow, math/log, math/exp, math/floor
