Page 4 of 4
Posted: 05/12/2003 - 16:43
by Retrovertigo
* sexy66 has joined #RemixCommodore
<]disease[> sexy66!
<[makke]> you've entered the wrong channel
<]disease[> how are you?
<[makke]> this is a nerd channel
Posted: 05/12/2003 - 17:01
by Retrovertigo
<]disease[> before betty, makke used to use an old matrix printer with a sponge glued to the printing head to have fun
Posted: 10/12/2003 - 17:43
by Retrovertigo
<Slaygon> if (!cup) { get(cup); fill(cup, coffee); } while (!EOL(cup->coffee)) { drink(cup->coffee); }
<SirKidd> burp
<Slaygon> (where EOL==End Of Liquid)
Posted: 10/12/2003 - 17:51
by Chris Abbott
<<<
if (!cup) { get(cup); fill(cup, coffee); } while (!EOL(cup->coffee)) { drink(cup->coffee); }
>>>
Shouldn't that be:
if (!cup) get(cup); fill(cup, coffee);
?
Otherwise if you had a cup, it would still be empty.
Chris
Posted: 10/12/2003 - 17:54
by Slaygon
Chris Abbott wrote:
Shouldn't that be:
if (!cup) get(cup); fill(cup, coffee);
?
Otherwise if you had a cup, it would still be empty.
Which is exactly the case here. ;)
Posted: 10/12/2003 - 18:21
by Chris Abbott
> Which is exactly the case here.
Well, then {fill->it} my good man