Anyone in Tech and Love Pool?

Do you know if the shirts are made in America?

With what's going on I don't want to buy from China.
 
Code:
do
{
    rack_balls();
    break();
    run_table();
} while (opponent_has_money());
 
source.jpg

Those are pretty cool.
 
No friendly games?

Code:
do
{
    rack_balls();
    break();
    run_table();
//} while (opponent_has_money());
} while (opponent[money] > 0 || opponent );

However, .... ( 'run_table' )... using a string as a function parameter... no doughnut!

I like the shirt!
.
 
Last edited:
As I sit here with php code open in an editor, that is pretty good.

Mike
PHP? That's so 2004!! Get with the program man (pun intended), its HTML5 or GTFO!!

J/K

I still do a bit of PHP these days as well! :thumbup:
 
How about

while (opponent && opponent[money] > 0) {
rack_balls();
break_off();
run_table();
}
 
Back
Top