unless somePreCondition ...
Hey,
Is it somehow possible to return "early" in a do block of the IO monad?
The eqivalent do in C:
void doBlock() {
if (some preCondition) {
return;
}
...
}
???
Thanks!
Nathan
_______________________________________________
Beginners mailing list
Beginners@haskell.org
http://www.haskell.org/mailman/listinfo/beginners