38

public var c: enter image description here = Infinity;

public var w:Array = [enter image description here,enter image description here,
                      enter image description here,enter image description here ];

for(i = 0; i < w.length; i++){
    if(chuck(i)){
        x++;
    }
    else{
        break;
    }
}
trace(x);

function chuck(i):Boolean{  
    return c > w[i];
}



What does $x$ represent?


Chowzen
  • 25,660
  • 5
  • 57
  • 220

1 Answers1

46

This looks like

How much wood would a wood Chuck chuck if a wood Chuck could chuck wood?

because

Chuck Norris has a wood grain pattern, thus "wood Chuck," and there's an array of wood, and Chuck vs wood.

also, X should be ...

The amount of wood a wood Chuck would chuck. It is logging for the logging, so to speak. It looks like 4 in this case, but I'm not completely sure since x is never instantiated.

Matt
  • 10,908
  • 2
  • 42
  • 78