Since the thread is called "Request For Comments", I am picking up the
glove. Here are some situations a successful implementation should handle:
for i 1 10 1 [
print i
case [
[i = 6] [break]
[i = 7] [print "Error, shouldn't get here!"]
]
]
paranoic: func [s [string!]] [
case [
[find s "x"] [return "x found"]
[true] [return "x not found"]
]
print "Error, shouldn't get here!"
]
paranoic ""
You can get an inspiration in: http://www.rebol.org/general/pif.r
Regards
Ladislav
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.