View Single Post
  #22  
Old 04-04-2008, 10:52 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
PHP Code:
//WORKS
function onCreated() {
  
temp.= {"lol pancake"};
  
this.addto(temp.v.link(), "o.o");
}
function 
addto(var, val) {
  var[
0] @= val;
}
// DOES NOT WORK
function onCreated() {
  
temp."lol pancake";
  
this.addto(temp.v.link(), "o.o");
}
function 
addto(var, val) {
  var @= 
val;

__________________
Reply With Quote