<@U04EATBG0E8> how can I run a flow?
# ask-marvin
r
@ask-marvin how can I run a flow?
a
Let me check that for you @Rob Freedy
Hi! You can run a flow by using the
run-flow
command. For example:```from prefect import flow, task@flow()def my_flow(): print("Hello World!") task = flow(task=task.run_flow_run_task_2())my_flow()```