Hi there,
In an MSDN article, I got the following code:
code:
// Article
// This is using function in Syntax 1.
function addSquares(x : double, y : double) : double {
return(x*x + y*y);
}
The debugger, however, states ")" is expected (probably in the param list).
Any ideas why?