Okay, last time, I left you with two functions which were nearly identical. This one:
Const pi = 3.1416
r = 0
WScript.Echo Main()
Function Main()
r = 2.5
Dim result
Dim str
str = “result=pi*(r*r)”
Execute str
Main = result
End Function
This function returns a nonzero value. Although r has a value of zero in the global scope, function Main() …