View Single Post
# 5 25-02-2004 , 05:06 PM
Dann's Avatar
Registered User
Join Date: Feb 2003
Location: Los Angeles
Posts: 695
right, but why can't I do this...

proc intTest(int $a, int $b)
{
int $c = $a + $b;
print ("value of c is: " + $c + "\n");
}

int $c = 4;
int $d = 5;
intTest($c,$d);

That should work as well, but it doesn't. I get the message varible $a is not defined.