# Literate App Example This example explains the helper before showing the application entry point. ```python {#helpers} def helper(): return "ready" ``` ```python {#main tangle="src/app.py"} <> def main(): return helper() ```