This is a standard page


def hello_world():
 print("Hello World!")

hello_world()

/
graph TD A[Start] --> B{Choice} B -->|Yes| C[Do something] B -->|No| D[Do something else]