On Thu, 2007-07-19 at 08:56 +0200, Rhythmic Fistman wrote:
> How do I break out of a "forever" block?
> I tried "break" but that didn't work.

Forever is a higher order library function isn't it? 

There are three ways it can stop:

1) goto out of it
2) program error (C++ exception)
3) suicide by deadlocking on an schannel

If you want to leave on some condition, use a while
loop instead.

-- 
John Skaller <skaller at users dot sf dot net>
Felix, successor to C++: http://felix.sf.net

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to