Is there something like return in Stata? I find myself writing overnested loops and wonder if I can circumvent that.
Something like this
RIght now my code looks something like this
which blows up the more test we do.
Something like this
Code:
do some test if x { return } do some other test if x { return } ...
RIght now my code looks something like this
Code:
do some test if x { bla } else { do some other test if x { blbla } } ...
Comment