Quote:
Originally posted by btedji
can you pass arguments through functions in graal like this?
funtion Test(this.test){
this.test+=5;
}
Test(5);
this.test would now be worth 10 if it worked
|
I've tried, and it didn't turn out to well...just put
this.test = 5; before the function call