Hello. Can you give an example where GOTO is useful ? Le 24 sept. 2015 07:24, "Charles R Harris" <[email protected]> a écrit :
> At last, goto for python <https://github.com/snoack/python-goto>! > > Usage: > > from goto import with_goto > > @with_goto > def range(start, stop): > i = start > result = [] > > label .begin > if i == stop: > goto .end > > result.append(i) > i += 1 > goto .begin > > label .end > return result > > > HT: LWN > > Chuck > > _______________________________________________ > NumPy-Discussion mailing list > [email protected] > https://mail.scipy.org/mailman/listinfo/numpy-discussion > >
_______________________________________________ NumPy-Discussion mailing list [email protected] https://mail.scipy.org/mailman/listinfo/numpy-discussion
