Ver Mensaje Individual
  #8 (permalink)  
Antiguo 05/11/2012, 09:59
Avatar de Fuzzylog
Fuzzylog
 
Fecha de Ingreso: agosto-2008
Ubicación: En internet
Mensajes: 2.511
Antigüedad: 16 años, 4 meses
Puntos: 188
Respuesta: Problema con una variable

Por cierto, eviten poner esto:

if (boolean == true) {} // if (boolean == false) {}

En vez de eso usad:

if (boolean) {} // if (!boolean) {}

Los tests de calidad os lo agradecerán :)
__________________
if (fuzzy && smooth) {
fuzzylog = "c00l";
return true;
}