For the archives (C++ style):
class Mod{
private:
bool value;
public:
Mod(bool);
void tell_me (void);
}
Mod::Mod(bool i){
if (i)
value = true
else
value = false;
}
void Mod::tell_me(void){
if (this.value)
cout << "Buy one now!\n";
else
cout << "Don't waste your money!\n";
return;
}
int main(){
Mod tornadoFuelSaver(false);
tornadoFuelSaver.tell_me();
return EXIT_SUCCESS;
}
Displays:
Don't waste your money!OK, so I am a little bored and caffinated after watching the US World Cup match. Bottom line, it's snake oil, like just about anything that is sold on late night infomercials using the "I use it and its great" type advertising. Notice they never showed a dyno plot, just the analog readout from a dyno? They could have been dyno'ing anything under any conditions.