View Single Post
  #2  
Old 05-10-2009, 09:29 AM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
I've done some research on this topic before, and I have another quirky example of code:

PHP Code:
new GuiControl("toastControl") {
  
this.testFunc = public function() {
    echo(
"Hi there!");
  };
}

toastControl.testFunc(); 
The code works perfectly fine, but it throws a syntax error.
Reply With Quote