Name
Pi -- returns the value of pi
Synopsis
result = Pi()
Function
This function returns the value of pi.

Since pi is a constant, calling this function to get it is unnecessary overhead. Instead, you can just use Hollywood's inbuilt constant #PI to get the value of pi.

Inputs
none

Results
result
value of pi, will be the same as the #PI constant
Example
Print(Pi() = #PI)
This will print "1" because the return value of Pi() will be the same as #PI.

Show TOC