Pi Function:

The Pi function returns a double representing the mathematical constant Pi.

Syntax:
double = Pi
Example Usage:
<%   = Pi  %>
returns 3.1415926535897932
ASP Source Code:
<%
Private Function Pi()
	Pi = 3.1415926535897932
	Pi = CDbl( Pi )
End Function
%>