Hi, there is this LOOP construct in 1.2. I was won...
# prefect-community
s
Hi, there is this LOOP construct in 1.2. I was wondering when that will become available in 2.0. Thanks!
k
You don’t need it because you can have while loops now in 2.0
Copy code
@flow
def loop():
    cond = condition()
    while cond:
        r = run_task()
        cond = r.result()
s
Thanks! I think I should've known:)