Re: BGT help please.
No, consider the following code.
int x=0;
int y=1;
int z=2;
void main()
{
x+y+z;
}
Now consider the following code and note the differences between the two.
int x=0;
int y=1;
int z=2
void main()
{
alert("Sum of variables.", "The sum of vairables X, Y, and Z = "+x+y+z);
}
The difference between these two is that the second one uses an alert function to tell the user what the result of x+y+z is.
If you tried to run the first example, it wouldn't appear to be doing anything, but really it's just calculating what x+y+z is and then exiting without displaying the results.
_______________________________________________ Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector